blob: 8483d50de6603d0dc4eeca6508c63294dd7b614a [file] [log] [blame]
[email protected]1c9f333f2012-01-19 02:55:031<!DOCTYPE html>
2<html>
3<head>
4<meta charset="utf-8">
[email protected]efb086342013-11-05 00:56:215<script src="../../resources/js-test.js"></script>
[email protected]1c9f333f2012-01-19 02:55:036</head>
7<body>
8<script>
9
10description("This test verifies that Node.childNodes returns the same NodeList when called repeatedly.");
11
12shouldBe("document.documentElement.childNodes", "document.documentElement.childNodes");
13shouldBeTrue("document.documentElement.childNodes === document.documentElement.childNodes");
14
15</script>
[email protected]1c9f333f2012-01-19 02:55:0316</body>
17</html>