backface-visibility-hidden-004-ref.html (616B)
1 <!DOCTYPE html> 2 <title>backface visibility: hidden does not apply to child pseudo-stacking contexts</title> 3 <link rel="author" title="Chris Harrelson" href="mailto:chrishtr@chromium.org"> 4 <link rel="help" href="http://www.w3.org/TR/css-transforms-1/#transform-property"> 5 <link rel="help" href="http://www.w3.org/TR/css-transforms-2/#propdef-backface-visibility"> 6 7 <p>The test passes if there is a green rectangle and no red</p> 8 <style> 9 div { 10 width: 100px; 11 height: 100px; 12 } 13 </style> 14 <div class=target style="backface-visibility: hidden"> 15 <div style="background: green; isolation: isolate"></div> 16 </div>