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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/dom/getElementsByClassName/014.html

Issue 2746033002: Remove some getElementsByClassName tests (Closed)
Patch Set: Created 3 years, 9 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
(Empty)
1 <html class="a A">
2 <head>
3 <title>document.getElementsByClassName(): case sensitive (quirks mode)</title>
4 <script src="resources/common.js"></script>
5 </head>
6 <body class="a a">
7 <p id="r">FAIL (script did not run)</p>
8 <script>
9 // We differ from Opera's implementation here. We are case-insensitive in q uirks mode.
10 // t(document.getElementsByClassName("A a"), [document.documentElement])
11 t(document.getElementsByClassName("A a"), [document.documentElement, documen t.body])
12 </script>
13 </body>
14 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698