 Chromium Code Reviews
 Chromium Code Reviews Issue 17654008:
  Implement the ::backdrop pseudo-element for modal <dialog>.  (Closed) 
  Base URL: svn://svn.chromium.org/blink/trunk
    
  
    Issue 17654008:
  Implement the ::backdrop pseudo-element for modal <dialog>.  (Closed) 
  Base URL: svn://svn.chromium.org/blink/trunk| Index: LayoutTests/dialog/backdrop-does-not-inherit-expected.html | 
| diff --git a/LayoutTests/dialog/backdrop-does-not-inherit-expected.html b/LayoutTests/dialog/backdrop-does-not-inherit-expected.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..bdc84186f6960f2f934fff0680f4e072dadb81e6 | 
| --- /dev/null | 
| +++ b/LayoutTests/dialog/backdrop-does-not-inherit-expected.html | 
| @@ -0,0 +1,16 @@ | 
| +<!DOCTYPE html> | 
| +<style> | 
| +#backdrop { | 
| + position: absolute; | 
| + top: 100px; | 
| + left: 100px; | 
| + height: 100px; | 
| + width: 100px; | 
| + background: green; | 
| +} | 
| +</style> | 
| +<body> | 
| +Test that ::backdrop does not inherit from anything. The test passes if there is | 
| +a green box and no red. | 
| +<div id="backdrop"></div> | 
| +</body> |