OLD | NEW |
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> |
OLD | NEW |