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

Side by Side Diff: LayoutTests/media/controls-css-overload.html

Issue 662243003: Use ::-internal-media-controls* instead of ::-webkit-media-controls* (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: introduce PseudoInternalCustomElement Created 6 years, 2 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 PUBLIC "-//W3C//DTD HTML 4.01//EN" 1 <!DOCTYPE html>
2 "http://www.w3.org/TR/html4/strict.dtd"> 2 <title>overloading controls CSS doesn't crash</title>
3 3 <style>
4 <html> 4 *::-internal-media-controls {
5 <head> 5 display: inline;
6 <title>Testing that overloading some controls doesn't crash the browser</tit le> 6 }
7 <style> 7 *::-internal-media-controls-panel {
8 .nocontrols::-webkit-media-controls-panel{ 8 display: none;
9 display:none; 9 }
10 } 10 *::-internal-media-controls-timeline-container {
11 .notimeline::-webkit-media-controls-timeline-container{ 11 display: none;
12 display:none; 12 }
13 } 13 </style>
14 </style> 14 <video controls></video>
15 <script src=video-test.js></script>
16 </head>
17 <body>
18 <video class="nocontrols" width=300 height=200 controls></video>
19 <video class="notimeline" width=300 height=200 controls></video>
20 <script>
21 consoleWrite("I did not crash");
22 endTest();
23 </script>
24 </body>
25 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fullscreen/video-controls-timeline.html ('k') | LayoutTests/media/controls-css-overload-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698