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

Side by Side Diff: LayoutTests/fast/css/style-scoped/registering-shadowroot-expected.txt

Issue 310443002: Remove scoped styles. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase for CQ Created 6 years, 6 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 Test having a <style scoped> element as a direct child of a ShadowRoot.
2
3 --- Initial ---
4 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
5 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 0
6 --- Attaching <style scoped> ---
7 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
8 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 1
9 --- Removing host ---
10 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
11 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 0
12 --- Inserting host ---
13 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
14 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 1
15 --- Unsetting @scoped ---
16 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
17 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 1
18 --- Setting @scoped ---
19 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
20 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 1
21 --- Detaching <style scoped> ---
22 PASS internals.numberOfScopedHTMLStyleChildren(host) is 0
23 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 0
24 --- Attaching <style scoped> under host ---
25 PASS internals.numberOfScopedHTMLStyleChildren(host) is 1
26 PASS internals.numberOfScopedHTMLStyleChildren(sr) is 0
27 --- DONE ---
28 PASS successfullyParsed is true
29
30 TEST COMPLETE
31
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698