OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../resources/js-test.js"></script> | 2 <script src="../../resources/js-test.js"></script> |
3 <style> | 3 <style> |
4 svg { | 4 svg { |
5 display: block; | 5 display: block; |
6 width: 100%; | 6 width: 100%; |
7 height: 100px | 7 height: 100px |
8 } | 8 } |
9 | 9 |
10 foreignObject { | 10 foreignObject { |
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 shouldBeEqualToString("getComputedStyle("+id+").color", color); | 68 shouldBeEqualToString("getComputedStyle("+id+").color", color); |
69 shouldBeEqualToString("getComputedStyle("+id+").fontWeight", fontWeight); | 69 shouldBeEqualToString("getComputedStyle("+id+").fontWeight", fontWeight); |
70 } | 70 } |
71 | 71 |
72 testComputedStyle("fo1", "rgb(0, 128, 0)", "bold"); | 72 testComputedStyle("fo1", "rgb(0, 128, 0)", "bold"); |
73 testComputedStyle("fo2", "rgb(0, 128, 0)", "bold"); | 73 testComputedStyle("fo2", "rgb(0, 128, 0)", "bold"); |
74 testComputedStyle("fo3", "rgb(0, 128, 0)", "bold"); | 74 testComputedStyle("fo3", "rgb(0, 128, 0)", "bold"); |
75 testComputedStyle("fo4", "rgb(0, 128, 0)", "bold"); | 75 testComputedStyle("fo4", "rgb(0, 128, 0)", "bold"); |
76 | 76 |
77 </script> | 77 </script> |
OLD | NEW |