| Index: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm
|
| diff --git a/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..d4f2e3418a0f3ab4b30168d5b84ca4322f5d002c
|
| --- /dev/null
|
| +++ b/third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-06.htm
|
| @@ -0,0 +1,20 @@
|
| +<!doctype html>
|
| +<html>
|
| + <head>
|
| + <title>document.getElementsByClassName(): adding element with class</title>
|
| + <script src="../../../../resources/testharness.js"></script>
|
| + <script src="../../../../resources/testharnessreport.js"></script>
|
| + </head>
|
| + <body class="a">
|
| + <div id="log"></div>
|
| + <script>
|
| + test(function() {
|
| + var collection = document.getElementsByClassName("a");
|
| + var ele = document.createElement("foo");
|
| + ele.setAttribute("class", "a");
|
| + document.body.appendChild(ele);
|
| + assert_array_equals(collection, [document.body, ele]);
|
| + })
|
| + </script>
|
| + </body>
|
| +</html>
|
|
|