History log of /libcore/dom/src/test/java/org/w3c/domts/level2/core/getElementsByTagNameNS08.java
Revision Date Author Comments
dd596ab148987c385e898336c7e33c2245f8e81d 14-Jan-2011 Jesse Wilson <jessewilson@google.com> Fix another DOM test that had broken expectations for the number of results.

The input XML file looks something like this:
<foo> <a></a> <b></b> &c; </foo>
The &c; entity expands to <c></c> on the RI. On Android, it is ignored. That
behavior is known.

The results from the RI were 3 elements:
<a> <b> <c>

The results from Android were also 3 elements, but a different 3:
<foo> <a> <b>

With my recent fix, the result is what it should be for a system that doesn't
expand entities:
<a> <b>

I've adjusted the test to expect one fewer element. It now fails on the RI,
because we're not expecting the expanded entity.

http://b/3350005
Change-Id: I20ab5c0521d20075582c0038bcf6e9e15d50597f
adc854b798c1cfe3bfd4c27d68d5cee38ca617da 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
1c0fed63c71ddb230f3b304aac12caffbedf2f21 04-Mar-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //depot/cupcake/@135843
a0881d052ee72e3f7e773374e9b1aa75fbd6be4c 10-Jan-2009 The Android Open Source Project <initial-contribution@android.com> auto import from //branches/cupcake/...@125939