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

Side by Side Diff: LayoutTests/fast/dom/shadow/shadowdom-for-media.html

Issue 48903019: Delete js-test-post.js. (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 <body> 3 <body>
4 <script src="../../js/resources/js-test-pre.js"></script> 4 <script src="../../js/resources/js-test-pre.js"></script>
5 5
6 <div id="container"> 6 <div id="container">
7 <video id='videoWithControls' controls width="320" height="240"></video> 7 <video id='videoWithControls' controls width="320" height="240"></video>
8 <video id='videoWithoutControls' width="320" height="240"></video> 8 <video id='videoWithoutControls' width="320" height="240"></video>
9 </div> 9 </div>
10 <pre id="console"></pre> 10 <pre id="console"></pre>
(...skipping 17 matching lines...) Expand all
28 var youngerShadowRootForVideoWithoutControls = internals.youngerShadowRoot(oldes tShadowRootForVideoWithoutControls); 28 var youngerShadowRootForVideoWithoutControls = internals.youngerShadowRoot(oldes tShadowRootForVideoWithoutControls);
29 29
30 30
31 shouldBe("shadowRootForVideoWithControls", "youngerShadowRootForVideoWithControl s"); 31 shouldBe("shadowRootForVideoWithControls", "youngerShadowRootForVideoWithControl s");
32 shouldNotBe("shadowRootForVideoWithControls", "oldestShadowRootForVideoWithContr ols"); 32 shouldNotBe("shadowRootForVideoWithControls", "oldestShadowRootForVideoWithContr ols");
33 shouldBe("shadowRootForVideoWithoutControls", "youngerShadowRootForVideoWithoutC ontrols"); 33 shouldBe("shadowRootForVideoWithoutControls", "youngerShadowRootForVideoWithoutC ontrols");
34 shouldNotBe("shadowRootForVideoWithoutControls", "oldestShadowRootForVideoWithou tControls"); 34 shouldNotBe("shadowRootForVideoWithoutControls", "oldestShadowRootForVideoWithou tControls");
35 35
36 var successfullyParsed = true; 36 var successfullyParsed = true;
37 </script> 37 </script>
38 <script src="../../js/resources/js-test-post.js"></script>
39 </body> 38 </body>
40 </html> 39 </html>
41 40
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698