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

Side by Side Diff: LayoutTests/fast/css/background-clip-text-expected.txt

Issue 1274643002: CSSStyleDeclaraction returns empty string (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Removed changes from imported/csswg-test Created 5 years, 4 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
OLDNEW
1 This tests checks that the '-webkit-text' and 'text' keywords are parsed correct ly in the 'background-clip' and '-webkit-background-clip' properties, and that ' background-clip' is parsed correctly in the 'background' shorthand. 1 This tests checks that the '-webkit-text' and 'text' keywords are parsed correct ly in the 'background-clip' and '-webkit-background-clip' properties, and that ' background-clip' is parsed correctly in the 'background' shorthand.
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS test("background-clip: -webkit-text", "background-clip") is "-webkit-text" 6 PASS test("background-clip: -webkit-text", "background-clip") is "-webkit-text"
7 PASS test("background-clip: -webkit-text", "-webkit-background-clip") is null 7 PASS test("background-clip: -webkit-text", "-webkit-background-clip") is ""
8 PASS test("background-clip: content-box", "background-clip") is "content-box" 8 PASS test("background-clip: content-box", "background-clip") is "content-box"
9 PASS test("background-clip: padding-box", "background-clip") is "padding-box" 9 PASS test("background-clip: padding-box", "background-clip") is "padding-box"
10 PASS test("background-clip: border-box", "background-clip") is "border-box" 10 PASS test("background-clip: border-box", "background-clip") is "border-box"
11 PASS test("background-clip: text", "background-clip") is null 11 PASS test("background-clip: text", "background-clip") is ""
12 PASS test("background-clip: text", "-webkit-background-clip") is null 12 PASS test("background-clip: text", "-webkit-background-clip") is ""
13 PASS test("-webkit-background-clip: -webkit-text", "background-clip") is null 13 PASS test("-webkit-background-clip: -webkit-text", "background-clip") is ""
14 PASS test("-webkit-background-clip: -webkit-text", "-webkit-background-clip") is "-webkit-text" 14 PASS test("-webkit-background-clip: -webkit-text", "-webkit-background-clip") is "-webkit-text"
15 PASS test("-webkit-background-clip: text", "background-clip") is null 15 PASS test("-webkit-background-clip: text", "background-clip") is ""
16 PASS test("-webkit-background-clip: text", "-webkit-background-clip") is "text" 16 PASS test("-webkit-background-clip: text", "-webkit-background-clip") is "text"
17 PASS test("background: url() padding-box", "-webkit-background-clip") is null 17 PASS test("background: url() padding-box", "-webkit-background-clip") is ""
18 PASS test("-webkit-mask: url() ", "background-clip") is null 18 PASS test("-webkit-mask: url() ", "background-clip") is ""
19 PASS test("background: url() ", "background-clip") is "initial" 19 PASS test("background: url() ", "background-clip") is "initial"
20 PASS test("background: url() padding-box", "background-clip") is "padding-box" 20 PASS test("background: url() padding-box", "background-clip") is "padding-box"
21 PASS test("background: url() padding-box border-box", "background-clip") is "bor der-box" 21 PASS test("background: url() padding-box border-box", "background-clip") is "bor der-box"
22 PASS test("background: repeat content-box border-box url() ", "background-clip") is "border-box" 22 PASS test("background: repeat content-box border-box url() ", "background-clip") is "border-box"
23 PASS test("background: padding-box blue content-box url() repeat scroll ", "back ground-clip") is "content-box" 23 PASS test("background: padding-box blue content-box url() repeat scroll ", "back ground-clip") is "content-box"
24 PASS successfullyParsed is true 24 PASS successfullyParsed is true
25 25
26 TEST COMPLETE 26 TEST COMPLETE
27 27
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698