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

Side by Side Diff: LayoutTests/fast/backgrounds/solid-color-context-restore.html

Issue 16433002: Prepopulate the memoryCache with data:uri images. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Update TestExpectations Created 7 years, 6 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
(Empty)
1 <html>
2 <head>
3 <style type="text/css">
4 #target { background: url(data:image/gif;base64,R0lGODlhAQABAIAAAP///wAA ACH5BAAAAAAALAAAAAABAAEAAAICRAEAOw==); }
5 </style>
6 </head>
7 <body>
8 <p>
9 This tests that the graphics context is restored after painting solid co lor
10 images. The highlight color should be light blue.
11 </p>
12 <hr>
13 <div id="target">
14 foo
15 </div>
16 <script type="text/javascript">
17 if (window.testRunner)
18 testRunner.display();
19 target = document.getElementById('target');
20 window.getSelection().setBaseAndExtent(target, 0, target, 1);
21 </script>
22 </body>
23 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698