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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-media.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 <body> 3 <body>
4 <script src="resources/polyfill.js"></script>
5 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
6 5
7 <div id="container"> 6 <div id="container">
8 <video id='videoWithControls' controls width="320" height="240"></video> 7 <video id='videoWithControls' controls width="320" height="240"></video>
9 <video id='videoWithoutControls' width="320" height="240"></video> 8 <video id='videoWithoutControls' width="320" height="240"></video>
10 </div> 9 </div>
11 <pre id="console"></pre> 10 <pre id="console"></pre>
12 11
13 <script> 12 <script>
14 function addShadowDOM(host) { 13 function addShadowDOM(host) {
(...skipping 18 matching lines...) Expand all
33 shouldNotBe("shadowRootForVideoWithControls", "oldestShadowRootForVideoWithContr ols"); 32 shouldNotBe("shadowRootForVideoWithControls", "oldestShadowRootForVideoWithContr ols");
34 shouldBe("shadowRootForVideoWithoutControls", "youngerShadowRootForVideoWithoutC ontrols"); 33 shouldBe("shadowRootForVideoWithoutControls", "youngerShadowRootForVideoWithoutC ontrols");
35 shouldNotBe("shadowRootForVideoWithoutControls", "oldestShadowRootForVideoWithou tControls"); 34 shouldNotBe("shadowRootForVideoWithoutControls", "oldestShadowRootForVideoWithou tControls");
36 35
37 var successfullyParsed = true; 36 var successfullyParsed = true;
38 </script> 37 </script>
39 <script src="../../js/resources/js-test-post.js"></script> 38 <script src="../../js/resources/js-test-post.js"></script>
40 </body> 39 </body>
41 </html> 40 </html>
42 41
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698