opacity-animation-in-fixed-opacity-parent-ref.html (530B)
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 5 <title>Testcase, bug 1395151</title> 6 <style type="text/css"> 7 .ok { 8 background : #0f0; 9 height : 40px; 10 width : 40px; 11 } 12 .error { 13 opacity : .001; 14 height : 100%; 15 width : 100%; 16 } 17 .error > span { 18 background : #f00; 19 content : ""; 20 display : block; 21 height : 100%; 22 width : 100%; 23 } 24 </style> 25 </head> 26 <body> 27 <div class="ok"> 28 <div class="error"><span></span></div> 29 </div> 30 </body> 31 </html>