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

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

Issue 1904403002: Recurse the inner elements only if behavior is DescendToInnerBlocks Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make menuitem non-void Created 4 years, 7 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..396cbae2d75e228fffd21daac986a2d41297794e 100644
--- a/third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt
+++ b/third_party/WebKit/LayoutTests/fast/parser/parse-menuitem-expected.txt
@@ -3,11 +3,14 @@ This test checks parsing of menuitem tag which is a self closing tag with no end
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('div1').innerHTML is "<menuitem></menuitem>"
+PASS document.getElementById('div2').innerHTML is "<menuitem><p>Element inside menuitem</p></menuitem>"
+PASS document.getElementById('menu').innerHTML is "<menuitem id=\"first_item\"></menuitem><menu id=\"submenu\" label=\"submenu\"><menuitem id=\"sub_menuitem\"></menuitem></menu><menuitem id=\"second_item\"></menuitem><hr><menuitem id=\"third_item\"></menuitem>"
PASS document.getElementById('first_item').firstChild is null
-PASS document.getElementById('menu').firstChild.nextSibling is document.getElementById('second_item')
+PASS document.getElementById('menu').firstChild.nextSibling is document.getElementById('submenu')
PASS successfullyParsed is true
TEST COMPLETE
+Element inside menuitem
+
« no previous file with comments | « third_party/WebKit/LayoutTests/fast/parser/parse-menuitem.html ('k') | third_party/WebKit/Source/core/html/HTMLElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698