| Index: LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
|
| diff --git a/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html b/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
|
| index a487e369e08751256de7c5e7e4c6b2b4e4fded42..bfc4a1551757e208acd7aeac71a1cf38289126fb 100644
|
| --- a/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
|
| +++ b/LayoutTests/fast/css/invalidation/targeted-class-shadow-combinator.html
|
| @@ -1,7 +1,7 @@
|
| <!DOCTYPE html>
|
| <script src="../../../resources/js-test.js"></script>
|
| <style>
|
| -.t1 #host1 /shadow/ .match { background-color: green; }
|
| +.t1 #host1::shadow .match { background-color: green; }
|
| .t2 /shadow-deep/ .match { background-color: green; }
|
| </style>
|
| <div id="t1">
|
| @@ -13,7 +13,7 @@
|
| <div></div>
|
| </div>
|
| <script>
|
| -description("Check that targeted class invalidation works for /shadow/ and /shadow-deep/ combinators.");
|
| +description("Check that targeted class invalidation works for ::shadow and /shadow-deep/ combinators.");
|
|
|
| // Create shadow trees
|
|
|
|
|