OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <meta charset="utf-8"> | 4 <meta charset="utf-8"> |
5 <style type="text/css"> | 5 <style type="text/css"> |
6 table td { | 6 table td { |
7 padding: 20px; | 7 padding: 20px; |
8 border: 10px solid blue; | 8 border: 10px solid blue; |
9 } | 9 } |
10 | 10 |
(...skipping 15 matching lines...) Expand all Loading... |
26 | 26 |
27 e = document.getElementById('cell1'); | 27 e = document.getElementById('cell1'); |
28 table = document.getElementById('table'); | 28 table = document.getElementById('table'); |
29 computedStyle = window.getComputedStyle(e, null); | 29 computedStyle = window.getComputedStyle(e, null); |
30 | 30 |
31 shouldBe("computedStyle.getPropertyValue('height')", "'200px'"); | 31 shouldBe("computedStyle.getPropertyValue('height')", "'200px'"); |
32 | 32 |
33 document.body.removeChild(table); | 33 document.body.removeChild(table); |
34 | 34 |
35 </script> | 35 </script> |
36 <script src="../../js/resources/js-test-post.js"></script> | |
37 </body> | 36 </body> |
38 </html> | 37 </html> |
OLD | NEW |