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

Unified Diff: LayoutTests/fast/parser/parse-menuitem.html

Issue 443373002: Add <menuitem>, new HTMLMenuElement IDL attributes. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added more tests Created 6 years, 4 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: LayoutTests/fast/parser/parse-menuitem.html
diff --git a/LayoutTests/fast/parser/parse-menuitem.html b/LayoutTests/fast/parser/parse-menuitem.html
new file mode 100644
index 0000000000000000000000000000000000000000..bb9c5a0841cd2880c7026ed9a863f15717d26ee6
--- /dev/null
+++ b/LayoutTests/fast/parser/parse-menuitem.html
@@ -0,0 +1,14 @@
+<!DOCTYPE html>
+<head>
+<script src="../../resources/js-test.js"></script>
+<script>
tkent 2014/08/11 13:36:57 Please move this <script> element to the last of t
pals 2014/08/11 14:07:08 Done.
+window.onload = function() {
+ shouldBeEqualToString("document.getElementById('div').innerHTML", "<menuitem>");
+ shouldBeEqualToString("document.getElementById('menu').innerHTML", "<menuitem id=\"first_item\"><menuitem id=\"second_item\">");
+ shouldBeNull("document.getElementById('first_item').firstChild");
+ shouldBe("document.getElementById('menu').firstChild.nextSibling", "document.getElementById('second_item')");
+};
+</script>
+</head>
+<div id="div"><menuitem></div>
+<menu id="menu" type=popup><menuitem id="first_item"><menuitem id="second_item"></menu>

Powered by Google App Engine
This is Rietveld 408576698