Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <!DOCTYPE html> | |
| 2 <script src="../../../resources/testharness.js"></script> | |
| 3 <script src="../../../resources/testharnessreport.js"></script> | |
| 4 <style> | |
| 5 #target { shape-outside: url(//fail); } | |
| 6 #target { shape-outside: none; } | |
| 7 </style> | |
| 8 <div id="target"></div> | |
| 9 <script> | |
| 10 test(function() { | |
| 11 assert_equals(getComputedStyle(target).shapeOutside, 'none'); | |
| 12 }, 'Test setting the none value for shape-outside'); | |
| 13 </script> | |
| OLD | NEW |