Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!doctype html> | |
| 2 <html> | |
| 3 <head> | |
| 4 <script src="../../resources/js-test.js"></script> | |
| 5 <style> | |
| 6 .test { | |
| 7 border-image-width: 0 5.5 4.4 3.3; | |
| 8 border-image-outset: 2.5 0 1.4 1.9; | |
| 9 border-style: solid; | |
| 10 visibility: hidden; | |
| 11 } | |
| 12 </style> | |
| 13 </head> | |
| 14 <body> | |
|
Julien - ping for review
2013/11/12 00:34:00
There should be a description of what you are test
davve
2013/11/12 10:47:06
OK.
| |
| 15 <div class="test"></div> | |
| 16 <script> | |
| 17 var elm = getComputedStyle(document.querySelector('.test')); | |
| 18 shouldBeEqualToString("elm.borderImageWidth", "0 5.5 4.4 3.3"); | |
| 19 shouldBeEqualToString("elm.borderImageOutset", "2.5 0 1.4 1.9"); | |
|
Julien - ping for review
2013/11/12 00:34:00
While this is great to make this test text-only (<
davve
2013/11/12 10:47:06
Re-added my rendering reftest. Not sure how to tes
| |
| 20 </script> | |
| 21 </body> | |
| 22 </html> | |
| OLD | NEW |