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

Side by Side Diff: LayoutTests/fast/css/implicit-attach-marking.html

Issue 219993002: Avoid calling markAncestorsWithChildNeedsStyleRecalc() constantly in childrenChanged (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fix accessibility test and causing recalcs on removal Created 6 years, 8 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 | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE html>
2
3 <script>jsTestIsAsync = true;</script>
4 <script src="../../resources/js-test.js"></script>
5
6 <div id="root"></div>
7
8 <script>
9 onload = function() {
10 requestAnimationFrame(function() {
11 div = root.appendChild(document.createElement("div"));
12 div.textContent = "Test that implicit attach marks all ancestors on inse rt.";
13 shouldBeTrue("div.offsetTop > 0");
14 finishJSTest();
15 });
16 };
17 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/implicit-attach-marking-expected.txt » ('j') | Source/core/dom/Node.cpp » ('J')

Powered by Google App Engine
This is Rietveld 408576698