| 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..62be03375b0c0e4152f1fb910b6e9ec5f444424f
|
| --- /dev/null
|
| +++ b/LayoutTests/fast/parser/parse-menuitem.html
|
| @@ -0,0 +1,13 @@
|
| +<!DOCTYPE html>
|
| +<head>
|
| +<script src="../../resources/js-test.js"></script>
|
| +</head>
|
| +<div id="div"><menuitem></div>
|
| +<menu id="menu" type=popup><menuitem id="first_item"><menuitem id="second_item"></menu>
|
| +<script>
|
| +description("This test checks parsing of menuitem tag which is a self closing tag with no end tag.");
|
| +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>
|
|
|