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

Side by Side Diff: LayoutTests/fast/dom/shadow/insertion-point-resetStyleInheritance-expected.txt

Issue 66113002: Partial revert of r161493. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge to ToT Created 7 years, 1 month 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
1 PASS successfullyParsed is true
2
3 TEST COMPLETE
1 Test case: no reset-style-inheritance. color value should be inherited from the shadow host. 4 Test case: no reset-style-inheritance. color value should be inherited from the shadow host.
2 PASS window.getComputedStyle(document.getElementById("no-reset-style-inheritance ").firstChild).color is "rgb(255, 238, 238)" 5 PASS window.getComputedStyle(document.getElementById("no-reset-style-inheritance ").firstChild).color is "rgb(255, 238, 238)"
3 PASS window.getComputedStyle(document.getElementById("no-reset-style-inheritance ").firstChild).backgroundColor is "rgba(0, 0, 0, 0)" 6 PASS window.getComputedStyle(document.getElementById("no-reset-style-inheritance ").firstChild).backgroundColor is "rgba(0, 0, 0, 0)"
4 Test case: reset-style-inhertiace basic test. color value should be initial beca use insertion point's resetStyleInheritance is true. 7 Test case: reset-style-inhertiace basic test. color value should be initial beca use insertion point's resetStyleInheritance is true.
5 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).color is "rgb(0, 0, 0)" 8 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).color is "rgb(0, 0, 0)"
6 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).backgroundColor is "rgba(0, 0, 0, 0)" 9 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).backgroundColor is "rgba(0, 0, 0, 0)"
7 Test case: make a content element reset-style-inhertiace by using its attribute. color value should be initial because insertion point's resetStyleInheritance i s true. 10 Test case: make a content element reset-style-inhertiace by using its attribute. color value should be initial because insertion point's resetStyleInheritance i s true.
8 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).color is "rgb(0, 0, 0)" 11 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).color is "rgb(0, 0, 0)"
9 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).backgroundColor is "rgba(0, 0, 0, 0)" 12 PASS window.getComputedStyle(document.getElementById("reset-style-inheritance"). firstChild).backgroundColor is "rgba(0, 0, 0, 0)"
10 Test case: make a shadow element reset-style-inhertiace by using its attribute. color value should be initial because insertion point's resetStyleInheritance is true. 13 Test case: make a shadow element reset-style-inhertiace by using its attribute. color value should be initial because insertion point's resetStyleInheritance is true.
(...skipping 10 matching lines...) Expand all
21 PASS window.getComputedStyle(document.getElementById("reset-but-not-cross-upper- boundary").firstChild).color is "rgb(0, 0, 0)" 24 PASS window.getComputedStyle(document.getElementById("reset-but-not-cross-upper- boundary").firstChild).color is "rgb(0, 0, 0)"
22 PASS window.getComputedStyle(document.getElementById("reset-but-not-cross-upper- boundary").firstChild).backgroundColor is "rgba(0, 0, 0, 0)" 25 PASS window.getComputedStyle(document.getElementById("reset-but-not-cross-upper- boundary").firstChild).backgroundColor is "rgba(0, 0, 0, 0)"
23 Test case: reset-style-inheritance with multiple shadow roots. color value shoul d be initial, because reset-style-inheritance of the insertion point in the youn gest shadow root is true. 26 Test case: reset-style-inheritance with multiple shadow roots. color value shoul d be initial, because reset-style-inheritance of the insertion point in the youn gest shadow root is true.
24 PASS window.getComputedStyle(document.getElementById("multiple-shadow-roots").fi rstChild).color is "rgb(0, 0, 0)" 27 PASS window.getComputedStyle(document.getElementById("multiple-shadow-roots").fi rstChild).color is "rgb(0, 0, 0)"
25 PASS window.getComputedStyle(document.getElementById("multiple-shadow-roots").fi rstChild).backgroundColor is "rgba(0, 0, 0, 0)" 28 PASS window.getComputedStyle(document.getElementById("multiple-shadow-roots").fi rstChild).backgroundColor is "rgba(0, 0, 0, 0)"
26 Test case: multiple insertion points in the same shadow dom subtree.. Each reset -style-inheritance should be checked. 29 Test case: multiple insertion points in the same shadow dom subtree.. Each reset -style-inheritance should be checked.
27 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).firstChild).color is "rgb(255, 238, 238)" 30 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).firstChild).color is "rgb(255, 238, 238)"
28 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).firstChild).backgroundColor is "rgba(0, 0, 0, 0)" 31 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).firstChild).backgroundColor is "rgba(0, 0, 0, 0)"
29 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).lastChild).color is "rgb(0, 0, 0)" 32 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).lastChild).color is "rgb(0, 0, 0)"
30 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).lastChild).backgroundColor is "rgba(0, 0, 0, 0)" 33 PASS window.getComputedStyle(document.getElementById("multiple-insertion-points" ).lastChild).backgroundColor is "rgba(0, 0, 0, 0)"
31 PASS successfullyParsed is true
32
33 TEST COMPLETE
34 DONE 34 DONE
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698