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

Side by Side Diff: LayoutTests/media/controls-slider-appearance-crash.html

Issue 556453007: Make slider thumb painting bail out when the node is null. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 3 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
« no previous file with comments | « no previous file | LayoutTests/media/controls-slider-appearance-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <script src="../resources/js-test.js"></script>
4 <script>
5 description("This test ensures that applying media control slider thumb appearan ce to pseudo-elements does not cause a crash.");
6 </script>
7
8 <style>
9 #sliderthumb, #volume-sliderthumb {
10 width: 100px;
11 height: 100px;
12 overflow: scroll;
13 }
14 #sliderthumb::-webkit-scrollbar {
15 -webkit-appearance: media-sliderthumb;
16 }
17 #volume-sliderthumb::-webkit-scrollbar {
18 -webkit-appearance: media-volume-sliderthumb;
19 }
20 </style>
21
22 <div id="sliderthumb"></div>
23 <div id="volume-sliderthumb"></div>
24
25 <script>
26 if (window.testRunner) {
27 testRunner.waitUntilDone();
28 testRunner.displayAsyncThen(function() { testRunner.notifyDone(); });
29 }
30 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/media/controls-slider-appearance-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698