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

Side by Side Diff: LayoutTests/scrollbars/custom-scrollbar-appearance-property.html

Issue 173433002: Do not crash if custom scrollbars have -webkit-appearane:searchfield-foo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | « LayoutTests/TestExpectations ('k') | Source/core/rendering/RenderThemeChromiumMac.mm » ('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 <html>
3 <head>
4 <style>
5 ::-webkit-scrollbar {
6 width: 16px;
7 height: 16px;
8 -webkit-appearance: searchfield-results-decoration;
9 }
10
11 ::-webkit-scrollbar-track {
12 background-color: #E3E3E3;
13 -webkit-appearance: searchfield-cancel-button;
14 }
15
16 ::-webkit-scrollbar-thumb {
17 background: black;
18 }
19
20 .scroll-container {
21 overflow: scroll;
22 width: 50px;
23 height: 50px;
24 }
25
26 .overflowing {
27 width: 200px;
28 height: 200px;
29 }
30 </style>
31 </head>
32 <body>
33 PASS if not crashed.
34 <div class="scroll-container"><div class="overflowing"></div></div>
35 </body>
36 </html>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | Source/core/rendering/RenderThemeChromiumMac.mm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698