Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / getComputedStyle / counter-reset-with-none-expected.txt
blob2b1826ab805aa5b8ddbe17a5c168599a6c5ecef4
1 Test that resetting 'counter-reset' and 'counter-increment' with 'none' works as expected.
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
6 Testing resetting 'counter-reset' alone
7 PASS window.getComputedStyle(counterReset, null).getPropertyValue("counter-reset") is "c 10"
8 PASS window.getComputedStyle(counterReset, null).getPropertyValue("counter-increment") is "none"
9 PASS window.getComputedStyle(counterReset, null).getPropertyValue("counter-reset") is "none"
10 PASS window.getComputedStyle(counterReset, null).getPropertyValue("counter-increment") is "none"
11 Testing resetting 'counter-increment' alone
12 PASS window.getComputedStyle(counterIncrement, null).getPropertyValue("counter-reset") is "none"
13 PASS window.getComputedStyle(counterIncrement, null).getPropertyValue("counter-increment") is "c 2"
14 PASS window.getComputedStyle(counterIncrement, null).getPropertyValue("counter-reset") is "none"
15 PASS window.getComputedStyle(counterIncrement, null).getPropertyValue("counter-increment") is "none"
16 Testing resetting 'counter-reset' with 'counter-increment'
17 PASS window.getComputedStyle(counterResetAndIncrementSameCounter, null).getPropertyValue("counter-reset") is "c 10"
18 PASS window.getComputedStyle(counterResetAndIncrementSameCounter, null).getPropertyValue("counter-increment") is "c 2"
19 PASS window.getComputedStyle(counterResetAndIncrementSameCounter, null).getPropertyValue("counter-reset") is "none"
20 PASS window.getComputedStyle(counterResetAndIncrementSameCounter, null).getPropertyValue("counter-increment") is "c 2"
21 Testing resetting 'counter-increment' with 'counter-reset'
22 PASS window.getComputedStyle(counterResetAndIncrementDifferentCounter, null).getPropertyValue("counter-reset") is "a 5"
23 PASS window.getComputedStyle(counterResetAndIncrementDifferentCounter, null).getPropertyValue("counter-increment") is "c 2"
24 PASS window.getComputedStyle(counterResetAndIncrementDifferentCounter, null).getPropertyValue("counter-reset") is "a 5"
25 PASS window.getComputedStyle(counterResetAndIncrementDifferentCounter, null).getPropertyValue("counter-increment") is "none"
26 PASS successfullyParsed is true
28 TEST COMPLETE