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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/css/invalidation/sibling-mutation-assert.html

Issue 2106063007: Don't schedule wholeSubtreeInvalid sets. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <script src="../../../resources/testharness.js"></script>
3 <script src="../../../resources/testharnessreport.js"></script>
4 <style>
5 #a + #b * { color: pink }
6 </style>
7 <p>Should not assert/crash.</p>
8 <div id="p">
9 <div id="b">
10 <div></div>
11 </div>
12 </div>
13 <script>
14 test(() => {
15 p.offsetTop;
16 var a = document.createElement("div");
17 a.id = "a";
18 p.insertBefore(a, b);
19 assert_true(true, "Reached end of insert without triggering assert.");
20 }, "Scheduling sibling set with wholeSubtreeInvalid should not cause asserts .");
21 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/invalidation/StyleInvalidator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698