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: LayoutTests/fast/css/getComputedStyle/computed-style-redistribution.html

Issue 793263002: Remove extraneous needsRecalc condition. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Added test Created 6 years 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 | LayoutTests/fast/css/getComputedStyle/computed-style-redistribution-expected.txt » ('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/js-test.js"></script>
3 <style>
4 .d1, .d2 { color: red }
5 </style>
6 <custom-element>
7 <div class="d1">A</div>
8 <div class="d2">B</div>
9 </custom-element>
10 <script>
11 description("Check that getComputedStyle causes a shadow re-distribution when ne cessary.");
12
13 var red = "rgb(255, 0, 0)";
14 var green = "rgb(0, 128, 0)";
15
16 var custom = document.querySelector("custom-element");
17 var shadowRoot = custom.createShadowRoot();
18 shadowRoot.innerHTML = '<style>::content div { color: green; }</style><content s elect=".d2"><content>'
19
20 var d1 = document.querySelector(".d1");
21 var d2 = document.querySelector(".d2");
22
23 shouldBe("getComputedStyle(d1).color", "red");
24 shouldBe("getComputedStyle(d2).color", "green");
25
26 document.body.offsetTop;
27
28 shadowRoot.querySelector("content").setAttribute("select", ".d1");
29
30 shouldBe("getComputedStyle(d1).color", "green");
31 shouldBe("getComputedStyle(d2).color", "red");
32
33 </script>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/getComputedStyle/computed-style-redistribution-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698