| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
| 5 <script src="../../js/resources/js-test-pre.js"></script> | 5 <script src="../../js/resources/js-test-pre.js"></script> |
| 6 <style> | 6 <style> |
| 7 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid r
ed; } | 7 .testDiv {-webkit-border-start: 5px solid green; -webkit-border-end: 5px solid r
ed; } |
| 8 </style> | 8 </style> |
| 9 </head> | 9 </head> |
| 10 <body> | 10 <body> |
| (...skipping 11 matching lines...) Expand all Loading... |
| 22 child.innerHTML="test"; | 22 child.innerHTML="test"; |
| 23 el.appendChild(child); | 23 el.appendChild(child); |
| 24 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('bord
er-right-color')", "'rgb(255, 0, 0)'"); | 24 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('bord
er-right-color')", "'rgb(255, 0, 0)'"); |
| 25 | 25 |
| 26 var child2 = document.createElement("div"); | 26 var child2 = document.createElement("div"); |
| 27 child2.innerHTML="מקור השם עברית"; | 27 child2.innerHTML="מקור השם עברית"; |
| 28 el.insertBefore(child2, child); | 28 el.insertBefore(child2, child); |
| 29 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('bord
er-right-color')", "'rgb(0, 128, 0)'"); | 29 shouldBe("document.defaultView.getComputedStyle(el, null).getPropertyValue('bord
er-right-color')", "'rgb(0, 128, 0)'"); |
| 30 el.style.display = "none"; | 30 el.style.display = "none"; |
| 31 </script> | 31 </script> |
| 32 <script src="../../js/resources/js-test-post.js"></script> | |
| 33 </body> | 32 </body> |
| 34 </html> | 33 </html> |
| OLD | NEW |