| Index: LayoutTests/compositing/visibility/visibility-composited-incremental-update-expected.html | 
| diff --git a/LayoutTests/compositing/visibility/visibility-composited-incremental-update-expected.html b/LayoutTests/compositing/visibility/visibility-composited-incremental-update-expected.html | 
| new file mode 100644 | 
| index 0000000000000000000000000000000000000000..6e40b38dbceb2c6a8f97f2611f89f1e11923906f | 
| --- /dev/null | 
| +++ b/LayoutTests/compositing/visibility/visibility-composited-incremental-update-expected.html | 
| @@ -0,0 +1,63 @@ | 
| +<!DOCTYPE html> | 
| +<html> | 
| +<head> | 
| +  <style> | 
| +    .set { | 
| +      position: absolute; | 
| +      top: 8px; | 
| +    } | 
| +    .box { | 
| +      height: 100px; | 
| +      width: 100px; | 
| +      background-color: blue; | 
| +    } | 
| + | 
| +    .hidden { | 
| +      visibility: hidden; | 
| +    } | 
| + | 
| +    .container.hidden { | 
| +      outline: 4px solid red; | 
| +    } | 
| + | 
| +    .visible { | 
| +      visibility: visible; | 
| +    } | 
| +    .should-be-hidden { | 
| +      background-color: red !important; | 
| +    } | 
| +    .should-be-visible { | 
| +      background-color: green !important; | 
| +    } | 
| + | 
| +    .visible-indicator { | 
| +      background-color: green; | 
| +    } | 
| + | 
| +    .hidden-indicator { | 
| +      background-color: red; | 
| +    } | 
| +  </style> | 
| +</head> | 
| +<body> | 
| +  <div class="set"> | 
| +    <div class="hidden-indicator box"></div> | 
| +    <div class="visible-indicator box"></div> | 
| +    <div class="hidden-indicator box"></div> | 
| +  </div> | 
| + | 
| +  <div class="set"> | 
| +    <div class="hidden container"> | 
| +      <div class="visible box should-be-visible"></div> | 
| +    </div> | 
| + | 
| +    <div class="hidden container"> | 
| +      <div class="box should-be-hidden"></div> | 
| +    </div> | 
| + | 
| +    <div class="hidden container"> | 
| +      <div id="target" class="visible box should-be-visible"></div> | 
| +    </div> | 
| +  </div> | 
| +</body> | 
| +</html> | 
|  |