blob: 770e8b71e568e2dd80a70d910c271d9df2dc4127 [file] [log] [blame]
krit@webkit.orgc6037a22014-03-14 02:25:41 +00001<!DOCTYPE html>
2<html>
3<style>
4* { font-size: 16px; }
5div { font-size: 8px; }
6</style>
7<body>
8<script src="../../resources/js-test-pre.js"></script>
9<script>
10description('Test parsing, element style and computed style for paint-order property.');
11
12function computedStyle(property, value) {
13 var div = document.createElement("div");
14 document.body.appendChild(div);
15 div.style.setProperty(property, value);
16 var computedValue = getComputedStyle(div).getPropertyValue(property);
17 document.body.removeChild(div);
18 return computedValue;
19}
20
21function innerStyle(property, value) {
22 var div = document.createElement("div");
23 div.style.setProperty(property, value);
24 return div.style.getPropertyValue(property);
25}
26
27function testComputed(property, value, expected) {
28 shouldBeEqualToString('computedStyle("' + property + '", "' + value + '")', expected);
29}
30
31function testInner(property, value, expected) {
32 if (expected === null)
benjamin@webkit.orgd430aac2015-08-04 05:14:43 +000033 expected = "";
34 shouldBeEqualToString('innerStyle("' + property + '", "' + value + '")', expected);
krit@webkit.orgc6037a22014-03-14 02:25:41 +000035}
36
37function negativeTest(property, value) {
38 testInner(property, value, null);
39 testComputed(property, value, 'normal');
40}
41
42// Test element style.
43testInner("paint-order", "normal", "normal");
44testInner("paint-order", "fill", "fill");
45testInner("paint-order", "stroke", "stroke");
46testInner("paint-order", "markers", "markers");
47testInner("paint-order", "fill stroke", "fill");
48testInner("paint-order", "fill stroke markers", "fill");
49testInner("paint-order", "fill markers", "fill markers");
50testInner("paint-order", "fill markers stroke", "fill markers");
51testInner("paint-order", "stroke fill", "stroke");
52testInner("paint-order", "stroke fill markers", "stroke");
53testInner("paint-order", "stroke markers", "stroke markers");
54testInner("paint-order", "stroke markers fill", "stroke markers");
55testInner("paint-order", "stroke fill", "stroke");
56testInner("paint-order", "stroke fill markers", "stroke");
57testInner("paint-order", "stroke markers", "stroke markers");
58testInner("paint-order", "stroke markers fill", "stroke markers");
59
60// Test computed style.
61testComputed("paint-order", "normal", "normal");
62testComputed("paint-order", "fill", "fill");
63testComputed("paint-order", "stroke", "stroke");
64testComputed("paint-order", "markers", "markers");
65testComputed("paint-order", "fill stroke", "fill");
66testComputed("paint-order", "fill stroke markers", "fill");
67testComputed("paint-order", "fill markers", "fill markers");
68testComputed("paint-order", "fill markers stroke", "fill markers");
69testComputed("paint-order", "stroke fill", "stroke");
70testComputed("paint-order", "stroke fill markers", "stroke");
71testComputed("paint-order", "stroke markers", "stroke markers");
72testComputed("paint-order", "stroke markers fill", "stroke markers");
73testComputed("paint-order", "stroke fill", "stroke");
74testComputed("paint-order", "stroke fill markers", "stroke");
75testComputed("paint-order", "stroke markers", "stroke markers");
76testComputed("paint-order", "stroke markers fill", "stroke markers");
77
78// Negative tests.
79negativeTest("paint-order", "normal fill");
80negativeTest("paint-order", "normal stroke");
81negativeTest("paint-order", "normal markers");
82negativeTest("paint-order", "fill fill");
83negativeTest("paint-order", "stroke stroke");
84negativeTest("paint-order", "markers markers");
85negativeTest("paint-order", "markers fill markers");
86negativeTest("paint-order", "markers stroke markers");
87
88</script>
89<script src="../../resources/js-test-post.js"></script>
90</body>
91</html>