Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(317)

Unified Diff: third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt

Issue 2819773002: Change <menuitem> parsing rules to match spec (Closed)
Patch Set: Fix affected layout test Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt
diff --git a/third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt b/third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt
index d9433afeec2d8257f5884db60021f2e795687837..b48c5b05382b87351aefe15e1fc6e37ca706126d 100644
--- a/third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt
@@ -1,10 +1,10 @@
-This test checks parsing of menuitem tag which is a self closing tag with no end tag.
+This test checks parsing of menuitem tag which has an end tag.
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
-PASS document.getElementById('div').innerHTML is "<menuitem>"
-PASS document.getElementById('menu').innerHTML is "<menuitem id=\"first_item\"><menuitem id=\"second_item\">"
+PASS document.getElementById('div').innerHTML is "<menuitem></menuitem>"
+PASS document.getElementById('menu').innerHTML is "<menuitem id=\"first_item\"></menuitem><menuitem id=\"second_item\"></menuitem>"
PASS document.getElementById('first_item').firstChild is null
PASS document.getElementById('menu').firstChild.nextSibling is document.getElementById('second_item')
PASS successfullyParsed is true

Powered by Google App Engine
This is Rietveld 408576698