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

Side by Side Diff: LayoutTests/fast/backgrounds/selection-background-color-of-image-list-style.html

Issue 1063453002: Fill list style background with same color with that of list background. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Append NeedsReabaseline for linux Created 5 years, 8 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <style>
3 ul { list-style-image: url('./resources/diamond.png'); }
4 ul>li::selection { background: yellow; }
5 </style>
6 <div>
7 Test pass if background of image list style in ul is yellow.
8 <ul>
9 <li>One</li>
10 <li>Two</li>
11 </ul>
12 </div>
13 <script>
14 var range = document.createRange();
15 range.selectNode(document.querySelector('ul'));
16 getSelection().addRange(range);
17 </script>
OLDNEW
« no previous file with comments | « LayoutTests/TestExpectations ('k') | LayoutTests/fast/backgrounds/selection-background-color-of-list-style.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698