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

Side by Side Diff: LayoutTests/imported/web-platform-tests/html/semantics/forms/the-input-element/checked.xhtml

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 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE html>
3 <html xmlns="http://www.w3.org/1999/xhtml">
4 <head>
5 <title>input@checked is immediately reflected to 'checked' IDL attribute</title>
6 <script src="../../../../../../resources/testharness.js"></script>
7 <script src="../../../../../../resources/testharnessreport.js"></script>
8 </head>
9 <body>
10 <div id="log"></div>
11 <input style="display: none" type="checkbox" checked="">
12 <script>
13 test(function(){
14 assert_true(document.querySelector('input').checked, 'Examining "checked" IDL at tribute value:')
15 });
16 </script>
17 </input>
18 </body>
19 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698