Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / shapes / parsing / parsing-shape-outside-none.html
blob580731c4efca859623c85301563ed43a09328af5
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>