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

Unified Diff: LayoutTests/inspector/timeline/recalc-inherit-001.html

Issue 139743017: Don't propagate Inherit ad infinitum. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: --no-find-copies Created 6 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 | LayoutTests/inspector/timeline/recalc-inherit-001-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/inspector/timeline/recalc-inherit-001.html
diff --git a/LayoutTests/inspector/timeline/recalc-inherit-001.html b/LayoutTests/inspector/timeline/recalc-inherit-001.html
new file mode 100644
index 0000000000000000000000000000000000000000..e8298c6acd9dfc7b7fa52717646bcb9d7dddb191
--- /dev/null
+++ b/LayoutTests/inspector/timeline/recalc-inherit-001.html
@@ -0,0 +1,46 @@
+<!DOCTYPE html>
+<html>
+<head>
+ <title>Elements affected by LocalStyleChange Inherit</title>
+ <script src="../../http/tests/inspector/inspector-test.js"></script>
+ <script src="../../http/tests/inspector/timeline-test.js"></script>
+ <script>
+ function setBodyColor() {
+ document.body.style.color = "pink";
+ document.body.offsetTop;
+ }
+ function test() {
+ InspectorTest.startTimeline(function() {
caseq 2014/01/23 11:11:19 This looks a bit like abuse of timeline tests (we
rune 2014/01/23 13:11:33 I am using window.internals.updateStyleAndReturnAf
+ InspectorTest.evaluateInPage("setBodyColor()");
+ });
+
+ InspectorTest.waitForRecordType("RecalculateStyles", finish);
+ function finish() {
+ InspectorTest.printTimelineRecords("RecalculateStyles");
+ InspectorTest.completeTest();
+ }
+ }
+ </script>
+ <style>
+ div { color: black; }
+ </style>
+</head>
+<body onload="runTest()">
+ <div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ <div></div>
+ </div>
+</body>
+</html>
« no previous file with comments | « no previous file | LayoutTests/inspector/timeline/recalc-inherit-001-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698