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

Side by Side Diff: LayoutTests/fast/repaint/background-blend-mode-image-color-dynamic-expected.html

Issue 207383002: Remove repaint.js from layout tests (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: More expectations Created 6 years, 9 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> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 div { 5 div {
6 margin: 5px; 6 margin: 5px;
7 width: 130px; 7 width: 130px;
8 height: 130px; 8 height: 130px;
9 background: url('resources/ducky.png') no-repeat 0 0 /100% 100%, green; 9 background: url('resources/ducky.png') no-repeat 0 0 /100% 100%, green;
10 } 10 }
11 </style> 11 </style>
12 <!-- This file should contain a duck with multiply blending set from script. --> 12 <!-- This file should contain a duck with multiply blending set from script. -->
13 <script src="resources/repaint.js" type="text/javascript"></script> 13 <body onload="repaintTest()">
14 <body onload="runRepaintTest()">
15 <script> 14 <script>
16 function repaintTest() { 15 function repaintTest() {
17 document.getElementById('blender').style.backgroundBlendMode = "mult iply, normal"; 16 document.getElementById('blender').style.backgroundBlendMode = "mult iply, normal";
18 } 17 }
19 </script> 18 </script>
20 <div id="blender"></div> 19 <div id="blender"></div>
21 </body> 20 </body>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698