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

Side by Side Diff: LayoutTests/fast/html/clone-range.html

Issue 58533003: Move fast/js/resources files to resources. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 1 month 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="../js/resources/js-test-pre.js"></script> 4 <script src="../../resources/js-test.js"></script>
5 </head> 5 </head>
6 <body> 6 <body>
7 <p> 7 <p>
8 Tests that a range input's slider is cloned along with its host. There 8 Tests that a range input's slider is cloned along with its host. There
9 should be a second range input in the document and it should have a 9 should be a second range input in the document and it should have a
10 slider positioned at zero. 10 slider positioned at zero.
11 </p> 11 </p>
12 <input type="range" id="sheep" style="display: block; width: 100px;"> 12 <input type="range" id="sheep" style="display: block; width: 100px;">
13 <div id="console"></div> 13 <div id="console"></div>
14 <script> 14 <script>
(...skipping 10 matching lines...) Expand all
25 var sheepShadow = internals.shadowRoot(sheep); 25 var sheepShadow = internals.shadowRoot(sheep);
26 var dollyShadow = internals.shadowRoot(dolly); 26 var dollyShadow = internals.shadowRoot(dolly);
27 shouldBe('internals.shadowPseudoId(dollyShadow.firstChild)', 27 shouldBe('internals.shadowPseudoId(dollyShadow.firstChild)',
28 'internals.shadowPseudoId(sheepShadow.firstChild)'); 28 'internals.shadowPseudoId(sheepShadow.firstChild)');
29 } 29 }
30 30
31 dolly.value = 0; 31 dolly.value = 0;
32 </script> 32 </script>
33 </body> 33 </body>
34 </html> 34 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/html/clone-keygen.html ('k') | LayoutTests/fast/html/details-click-controls.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698