1443027-ref.html (668B)
1 <!DOCTYPE html> 2 <html lang="en"><head> 3 <meta http-equiv="content-type" content="text/html; charset=UTF-8"><meta charset="utf-8"> 4 <title>Bug 1443027 - Test merging across multiple paints</title> 5 6 <style> 7 8 body { opacity: 0.9; } 9 10 div { 11 position: absolute; 12 transform: translatez(1px); 13 } 14 15 #A { 16 left: 250px; 17 top: 50px; 18 width: 100px; 19 height: 100px; 20 background-color: red; 21 } 22 23 #B { 24 left: 200px; 25 top: 0px; 26 width: 100px; 27 height: 100px; 28 background-color: yellow; 29 } 30 31 #C { 32 left: 0px; 33 top: 0px; 34 width: 100px; 35 height: 100px; 36 background-color: green; 37 } 38 39 </style> 40 </head> 41 <body> 42 <div id="A"></div> 43 <div id="B"></div> 44 <div id="C"></div> 45 </body></html>