OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script src="../../../js/resources/js-test-pre.js"></script> | 4 <script src="../../../js/resources/js-test-pre.js"></script> |
5 </head> | 5 </head> |
6 <body> | 6 <body> |
7 <div id="test"></div> | 7 <div id="test"></div> |
8 <div id="ancestor"><div id="child"></div></div> | 8 <div id="ancestor"><div id="child"></div></div> |
9 | 9 |
10 <script> | 10 <script> |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 element = document.getElementById('child'); | 93 element = document.getElementById('child'); |
94 ancestor = document.getElementById('ancestor'); | 94 ancestor = document.getElementById('ancestor'); |
95 | 95 |
96 computedValueSettingTest('inherit', 'none'); | 96 computedValueSettingTest('inherit', 'none'); |
97 computedValueSettingTest('inherit', 'distribute'); | 97 computedValueSettingTest('inherit', 'distribute'); |
98 computedValueSettingTest('initial', 'auto'); | 98 computedValueSettingTest('initial', 'auto'); |
99 | 99 |
100 ownValueTest("inter-word", "distribute"); | 100 ownValueTest("inter-word", "distribute"); |
101 ownValueTest("none", "inter-word"); | 101 ownValueTest("none", "inter-word"); |
102 </script> | 102 </script> |
103 <script src="../../../js/resources/js-test-post.js"></script> | |
104 </body> | 103 </body> |
105 | 104 |
106 </html> | 105 </html> |
OLD | NEW |