Index: third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before.html |
diff --git a/third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before.html b/third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..9948728f9531cf740aef3101ac6c3f37511dd3be |
--- /dev/null |
+++ b/third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before.html |
@@ -0,0 +1,12 @@ |
+<!DOCTYPE html> |
+<style> |
+.a + span::before { content: "PA" } |
+.b + ::before { content: "SS" } |
+</style> |
+<p>You should see the word PASS below.</p> |
+<span id="t1"></span><span></span><span id="t2"></span><span></span> |
+<script> |
+document.body.offsetTop; |
+t1.className = "a"; |
+t2.className = "b"; |
+</script> |