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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/semantics/grouping-content/the-ol-element/ol.start-reflection-2.html

Issue 1144143009: W3C Test: Import web-platform-tests/html/semantics (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 5 years, 6 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <title>ol.start - reflection test</title>
5 <link rel="author" title="Shiki Okasaka" href="http://shiki.esrille.com/">
6 <link rel="author" title="Esrille Inc." href="http://www.esrille.com/">
7 <link rel="help" href="https://html.spec.whatwg.org/multipage/#the-ol-element" >
8 <meta name="assert" content="This test checks that the start IDL attribute ref lects the respective content attribute of the same name.">
9 <link rel="stylesheet" href="../../../../../../resources/testharness.css">
10 <script src="../../../../../../resources/testharness.js"></script>
11 <script src="../../../../../../resources/testharnessreport.js"></script>
12 </head>
13 <body>
14 <ol id='ol' reversed>
15 <li>Three</li>
16 <li>Two</li>
17 <li>One</li>
18 </ol>
19 <div id='log'></div>
20 <script>
21 test(function() {
22 assert_equals(document.getElementById('ol').start, 3);
23 })
24 </script>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698