Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before.html

Issue 1639133003: ::before/::after are not features for invalidation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before-expected.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/invalidation/universal-sibling-before-expected.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698