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

Side by Side Diff: LayoutTests/fast/dom/shadow/pseudoclass-update-checked-input.html

Issue 14594006: Remove Internals::createShadowRoot(element) and polyfill.js. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="resources/polyfill.js"></script>
5 </head> 4 </head>
6 5
7 <body> 6 <body>
8 7
9 <p>When an input element became 'checked' or not-'checked', distribution should happen.</p> 8 <p>When an input element became 'checked' or not-'checked', distribution should happen.</p>
10 9
11 <p>Case 1: input[type=checkbox] becomes checked</p> 10 <p>Case 1: input[type=checkbox] becomes checked</p>
12 <div id="host1"> 11 <div id="host1">
13 <input id="input1" type="checkbox"> 12 <input id="input1" type="checkbox">
14 </div> 13 </div>
(...skipping 28 matching lines...) Expand all
43 input2.checked = false; 42 input2.checked = false;
44 input3.checked = true; 43 input3.checked = true;
45 input4.checked = false; 44 input4.checked = false;
46 testRunner.notifyDone(); 45 testRunner.notifyDone();
47 }, 0); 46 }, 0);
48 47
49 </script> 48 </script>
50 </body> 49 </body>
51 </html> 50 </html>
52 51
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698