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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/web-platform-tests/dom/nodes/getElementsByClassName-19.htm

Issue 1529523002: Import dom/ from web-platform-tests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: tweak W3CImportExpectations Created 5 years 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html><head>
3 <title>getElementsByClassName</title>
4 <meta content="get elements in document" name="description">
5 <link href="https://dom.spec.whatwg.org/#dom-document-getelementsbyclassname " rel="help">
6 <script src="../../../../resources/testharness.js"></script>
7 <script src="../../../../resources/testharnessreport.js"></script>
8 </head>
9 <body>
10 <div id="log"></div>
11 <div>
12 <div>
13 <a class="text link" href="#foo">test link #foo</a>
14 </div>
15 <b class="text">text</b>
16 </div>
17 <table>
18 <caption class="text caption">text caption</caption>
19 <thead>
20 <tr>
21 <td class="TEXT head">TEXT head</td>
22 </tr>
23 </thead>
24 <tbody>
25 <tr>
26 <td class="td text1">td text1</td>
27 </tr>
28 <tr>
29 <td class="td text">td text</td>
30 </tr>
31 <tr>
32 <td class="td te xt">td te xt</td>
33 </tr>
34 </tbody>
35 <tfoot>
36 <tr>
37 <td class="TEXT foot">TEXT foot</td>
38 </tr>
39 </tfoot>
40 </table>
41 <div class="xt te">xt te</div>
42
43 <script type="text/javascript">
44 test(function ()
45 {
46 var collection = document.getElementsByClassName("text");
47 assert_equals(collection.length, 4);
48 assert_equals(collection[0].parentNode.nodeName, "DIV");
49 assert_equals(collection[1].parentNode.nodeName, "DIV");
50 assert_equals(collection[2].parentNode.nodeName, "TABLE");
51 assert_equals(collection[3].parentNode.nodeName, "TR");
52 }, "get elements in document");
53 </script>
54 </body></html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698