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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/dom/nodes/getElementsByClassName-10.xml

Issue 1988983002: Move the dom directory from web-platform-tests/ to wpt/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 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 unified diff | Download patch
OLDNEW
1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:g="http://www.w3.org/2000/svg"> 1 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:g="http://www.w3.org/2000/svg">
2 <head> 2 <head>
3 <title>document.getElementsByClassName(): compound</title> 3 <title>document.getElementsByClassName(): compound</title>
4 <script src="../../../../resources/testharness.js"></script> 4 <script src="../../../../resources/testharness.js"></script>
5 <script src="../../../../resources/testharnessreport.js"></script> 5 <script src="../../../../resources/testharnessreport.js"></script>
6 </head> 6 </head>
7 <body> 7 <body>
8 <div id="log"/> 8 <div id="log"/>
9 <div id="tests"> 9 <div id="tests">
10 <x class="a"/> 10 <x class="a"/>
11 <g:x class="a"/> 11 <g:x class="a"/>
12 </div> 12 </div>
13 <script>test(function() { 13 <script>test(function() {
14 assert_array_equals(document.getElementsByClassName("a"), 14 assert_array_equals(document.getElementsByClassName("a"),
15 document.getElementById("tests").children); 15 document.getElementById("tests").children);
16 }) 16 })
17 </script> 17 </script>
18 </body> 18 </body>
19 </html> 19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698