<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>[161436] trunk</title>
</head>
<body>

<style type="text/css"><!--
#msg dl.meta { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dl.meta dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer, #logmsg { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fa0 solid; padding: 6px; }
#logmsg { background: #ffc; border: 1px #fa0 solid; padding: 1em 1em 0 1em; }
#logmsg p, #logmsg pre, #logmsg blockquote { margin: 0 0 1em 0; }
#logmsg p, #logmsg li, #logmsg dt, #logmsg dd { line-height: 14pt; }
#logmsg h1, #logmsg h2, #logmsg h3, #logmsg h4, #logmsg h5, #logmsg h6 { margin: .5em 0; }
#logmsg h1:first-child, #logmsg h2:first-child, #logmsg h3:first-child, #logmsg h4:first-child, #logmsg h5:first-child, #logmsg h6:first-child { margin-top: 0; }
#logmsg ul, #logmsg ol { padding: 0; list-style-position: inside; margin: 0 0 0 1em; }
#logmsg ul { text-indent: -1em; padding-left: 1em; }#logmsg ol { text-indent: -1.5em; padding-left: 1.5em; }
#logmsg > ul, #logmsg > ol { margin: 0 0 1em 0; }
#logmsg pre { background: #eee; padding: 1em; }
#logmsg blockquote { border: 1px solid #fa0; border-left-width: 10px; padding: 1em 1em 0 1em; background: white;}
#logmsg dl { margin: 0; }
#logmsg dt { font-weight: bold; }
#logmsg dd { margin: 0; padding: 0 0 0.5em 0; }
#logmsg dd:before { content:'\00bb';}
#logmsg table { border-spacing: 0px; border-collapse: collapse; border-top: 4px solid #fa0; border-bottom: 1px solid #fa0; background: #fff; }
#logmsg table th { text-align: left; font-weight: normal; padding: 0.2em 0.5em; border-top: 1px dotted #fa0; }
#logmsg table td { text-align: right; border-top: 1px dotted #fa0; padding: 0.2em 0.5em; }
#logmsg table thead th { text-align: center; border-bottom: 1px solid #fa0; }
#logmsg table th.Corner { text-align: left; }
#logmsg hr { border: none 0; border-top: 2px dashed #fa0; height: 1px; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<div id="msg">
<dl class="meta">
<dt>Revision</dt> <dd><a href="http://trac.webkit.org/projects/webkit/changeset/161436">161436</a></dd>
<dt>Author</dt> <dd>betravis@adobe.com</dd>
<dt>Date</dt> <dd>2014-01-07 10:59:32 -0800 (Tue, 07 Jan 2014)</dd>
</dl>

<h3>Log Message</h3>
<pre>[CSS Shapes] Change default value from 'auto' to 'none'
https://bugs.webkit.org/show_bug.cgi?id=126544

Reviewed by Sam Weinig.

Source/WebCore:

Update the CSS infrastructure to accept 'none' as the default value
for shape-inside and shape-outside.

Updated existing parsing tests.

* css/CSSComputedStyleDeclaration.cpp:
(WebCore::ComputedStyleExtractor::propertyValue):
* css/CSSParser.cpp:
(WebCore::CSSParser::parseShapeProperty):
* rendering/style/ShapeValue.h:

LayoutTests:

Change the default value to 'none', and replace 'none' with 'auto' in the
list of invalid values.

* fast/shapes/css-shapes-disabled-expected.txt:
* fast/shapes/css-shapes-disabled.html:
* fast/shapes/parsing/parsing-shape-inside-expected.txt:
* fast/shapes/parsing/parsing-shape-inside.html:
* fast/shapes/parsing/parsing-shape-lengths-expected.txt:
* fast/shapes/parsing/parsing-shape-lengths.html:
* fast/shapes/parsing/parsing-shape-margin-expected.txt:
* fast/shapes/parsing/parsing-shape-outside-expected.txt:
* fast/shapes/parsing/parsing-shape-outside.html:
* fast/shapes/parsing/parsing-shape-padding-expected.txt:
* fast/shapes/parsing/parsing-test-utils.js:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsfastshapescssshapesdisabledexpectedtxt">trunk/LayoutTests/fast/shapes/css-shapes-disabled-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastshapescssshapesdisabledhtml">trunk/LayoutTests/fast/shapes/css-shapes-disabled.html</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapeinsideexpectedtxt">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapeinsidehtml">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapelengthsexpectedtxt">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapelengthshtml">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapemarginexpectedtxt">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-margin-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapeoutsideexpectedtxt">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapeoutsidehtml">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingshapepaddingexpectedtxt">trunk/LayoutTests/fast/shapes/parsing/parsing-shape-padding-expected.txt</a></li>
<li><a href="#trunkLayoutTestsfastshapesparsingparsingtestutilsjs">trunk/LayoutTests/fast/shapes/parsing/parsing-test-utils.js</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCorecssCSSComputedStyleDeclarationcpp">trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp</a></li>
<li><a href="#trunkSourceWebCorecssCSSParsercpp">trunk/Source/WebCore/css/CSSParser.cpp</a></li>
<li><a href="#trunkSourceWebCorerenderingstyleShapeValueh">trunk/Source/WebCore/rendering/style/ShapeValue.h</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/ChangeLog        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -1,3 +1,25 @@
</span><ins>+2014-01-07  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        [CSS Shapes] Change default value from 'auto' to 'none'
+        https://bugs.webkit.org/show_bug.cgi?id=126544
+
+        Reviewed by Sam Weinig.
+
+        Change the default value to 'none', and replace 'none' with 'auto' in the
+        list of invalid values.
+
+        * fast/shapes/css-shapes-disabled-expected.txt:
+        * fast/shapes/css-shapes-disabled.html:
+        * fast/shapes/parsing/parsing-shape-inside-expected.txt:
+        * fast/shapes/parsing/parsing-shape-inside.html:
+        * fast/shapes/parsing/parsing-shape-lengths-expected.txt:
+        * fast/shapes/parsing/parsing-shape-lengths.html:
+        * fast/shapes/parsing/parsing-shape-margin-expected.txt:
+        * fast/shapes/parsing/parsing-shape-outside-expected.txt:
+        * fast/shapes/parsing/parsing-shape-outside.html:
+        * fast/shapes/parsing/parsing-shape-padding-expected.txt:
+        * fast/shapes/parsing/parsing-test-utils.js:
+
</ins><span class="cx"> 2014-01-07  Hans Muller  &lt;hmuller@adobe.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [CSS Shapes] shape-outside layout incorrect when line spans rounded box rounded corners
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapescssshapesdisabledexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/css-shapes-disabled-expected.txt (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/css-shapes-disabled-expected.txt        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/css-shapes-disabled-expected.txt        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -8,9 +8,9 @@
</span><span class="cx"> PASS testInlineStyle(&quot;-webkit-shape-padding&quot;, &quot;10px&quot;) is null
</span><span class="cx"> PASS testComputedStyle(&quot;-webkit-shape-padding&quot;, &quot;10px&quot;) is &quot;0px&quot;
</span><span class="cx"> PASS testInlineStyle(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 10px, 10px)&quot;) is null
</span><del>-PASS testComputedStyle(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS testComputedStyle(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS testInlineStyle(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 10px, 10px)&quot;) is null
</span><del>-PASS testComputedStyle(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS testComputedStyle(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapescssshapesdisabledhtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/css-shapes-disabled.html (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/css-shapes-disabled.html        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/css-shapes-disabled.html        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -32,8 +32,8 @@
</span><span class="cx"> testStyle(&quot;-webkit-shape-margin&quot;, &quot;10px&quot;, &quot;0px&quot;);
</span><span class="cx"> testStyle(&quot;-webkit-shape-padding&quot;, &quot;10px&quot;, &quot;0px&quot;);
</span><span class="cx"> 
</span><del>-testStyle(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 10px, 10px)&quot;, &quot;auto&quot;);
-testStyle(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 10px, 10px)&quot;, &quot;auto&quot;);
</del><ins>+testStyle(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 10px, 10px)&quot;, &quot;none&quot;);
+testStyle(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 10px, 10px)&quot;, &quot;none&quot;);
</ins><span class="cx"> 
</span><span class="cx"> &lt;/script&gt;
</span><span class="cx"> &lt;script src=&quot;../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapeinsideexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside-expected.txt (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside-expected.txt        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside-expected.txt        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -3,8 +3,8 @@
</span><span class="cx"> On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
</span><span class="cx"> 
</span><span class="cx"> 
</span><del>-PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;auto&quot;) is &quot;auto&quot;
-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;auto&quot;) is &quot;auto&quot;
</del><ins>+PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;none&quot;) is &quot;none&quot;
+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;none&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;rectangle(10px, 20px, 30px, 40px)&quot;
</span><span class="cx"> PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 5px)&quot;) is &quot;rectangle(10px, 20px, 30px, 40px, 5px)&quot;
</span><span class="lines">@@ -120,146 +120,146 @@
</span><span class="cx"> PASS removeBaseURL(getCSSText(&quot;-webkit-shape-inside&quot;, &quot;url('image')&quot;)) is &quot;url(image)&quot;
</span><span class="cx"> PASS removeBaseURL(getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;url('image')&quot;)) is &quot;url(image)&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;calc()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;calc()&quot;) is &quot;auto&quot;
-PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;none&quot;) is &quot;&quot;
-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;none&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;calc()&quot;) is &quot;none&quot;
+PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;auto&quot;) is &quot;&quot;
+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;auto&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px, 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px, 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px, 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px, 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px 20px 30px 40px 50px 60px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px 20px 30px 40px 50px 60px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px 20px 30px 40px 50px 60px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(round)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(round)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(round)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(round 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(round 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(round 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round 10px /)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round 10px /)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round 10px /)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round 20px 30px 40px 50px 60px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round 20px 30px 40px 50px 60px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round 20px 30px 40px 50px 60px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round /)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round /)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round /)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round / 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round / 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(10px round / 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(/)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(/)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(/)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(/ 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(/ 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(/ 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;inset(round /)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(round /)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(round /)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 20px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 20px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 20px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px 20px 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px 20px 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px 20px 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 20px, 30px, 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 20px, 30px, 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px, 20px, 30px, 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px 20px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px 20px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px 20px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10% left)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10% left)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(10px at 10% left)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;circle(at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px, 20px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px, 20px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px, 20px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px, 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px, 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px, 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 10px at 10% left)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 10px at 10% left)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 10px at 10% left)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(10px 20px 30px at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero,10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero,10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero,10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd,12px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd,12px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(evenodd,12px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(10px, 20px, 30px, 40px, 40px, 50px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(10px, 20px, 30px, 40px, 40px, 50px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(10px, 20px, 30px, 40px, 40px, 50px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;content-box content-box&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;content-box content-box&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;content-box content-box&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;) is &quot;auto&quot;
-PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;auto content-box&quot;) is &quot;&quot;
-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;auto content-box&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;) is &quot;none&quot;
+PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;none content-box&quot;) is &quot;&quot;
+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;none content-box&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;url('shape.svg') content-box&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;url('shape.svg') content-box&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;url('shape.svg') content-box&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-inside&quot;, &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;auto&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;auto&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;parent: auto, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;none&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;none&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;parent: none, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</ins><span class="cx"> PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;outside-shape&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;parent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</span><del>-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;
</del><ins>+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;
</ins><span class="cx"> PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;inherit&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</span><del>-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;&quot;, &quot;inherit&quot;) is &quot;parent: auto, child: auto&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;auto&quot;, &quot;inherit&quot;) is &quot;parent: auto, child: auto&quot;
</del><ins>+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;&quot;, &quot;inherit&quot;) is &quot;parent: none, child: none&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-inside&quot;, &quot;none&quot;, &quot;inherit&quot;) is &quot;parent: none, child: none&quot;
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapeinsidehtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-inside.html        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -21,19 +21,19 @@
</span><span class="cx"> testLocalURLShapeProperty(&quot;-webkit-shape-inside&quot;, &quot;url(\'image\')&quot;, &quot;url(image)&quot;);
</span><span class="cx"> 
</span><span class="cx"> invalidShapeValues.forEach(function(value, i, a) {
</span><del>-    testShapePropertyParsingFailure(&quot;-webkit-shape-inside&quot;, value, &quot;auto&quot;) 
</del><ins>+    testShapePropertyParsingFailure(&quot;-webkit-shape-inside&quot;, value, &quot;none&quot;)
</ins><span class="cx"> });
</span><span class="cx"> 
</span><span class="cx"> applyToEachArglist(
</span><span class="cx">     testNotInheritedShapeProperty, 
</span><span class="cx">     [// [property, parentValue, childValue, expectedValue]
</span><del>-     [&quot;-webkit-shape-inside&quot;, &quot;auto&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;parent: auto, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
</del><ins>+     [&quot;-webkit-shape-inside&quot;, &quot;none&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;parent: none, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
</ins><span class="cx">      [&quot;-webkit-shape-inside&quot;, &quot;outside-shape&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;parent: outside-shape, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
</span><del>-     [&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;],
-     [&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;],
</del><ins>+     [&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;],
+     [&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;],
</ins><span class="cx">      [&quot;-webkit-shape-inside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;inherit&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
</span><del>-     [&quot;-webkit-shape-inside&quot;, &quot;&quot;, &quot;inherit&quot;, &quot;parent: auto, child: auto&quot;],
-     [&quot;-webkit-shape-inside&quot;, &quot;auto&quot;, &quot;inherit&quot;, &quot;parent: auto, child: auto&quot;]]
</del><ins>+     [&quot;-webkit-shape-inside&quot;, &quot;&quot;, &quot;inherit&quot;, &quot;parent: none, child: none&quot;],
+     [&quot;-webkit-shape-inside&quot;, &quot;none&quot;, &quot;inherit&quot;, &quot;parent: none, child: none&quot;]]
</ins><span class="cx"> );
</span><span class="cx"> &lt;/script&gt;
</span><span class="cx"> &lt;script src=&quot;../../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapelengthsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths-expected.txt (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths-expected.txt        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths-expected.txt        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -36,49 +36,49 @@
</span><span class="cx"> PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(100%, 100%, 100%, 100%)&quot;) is &quot;ellipse(100%, 100%, 100%, 100%)&quot;
</span><span class="cx"> PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;polygon(10% 20%, 30% 40%, 40% 50%)&quot;) is &quot;polygon(nonzero, 10% 20%, 30% 40%, 40% 50%)&quot;
</span><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, 1)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, 1)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, 1)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, px)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, 1p)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, 1p)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, 1p)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, calc())&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, calc())&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(1px, 1px, calc())&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(-1.5px, +1.5px, -1.5px)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(-1.5px, +1.5px, -1.5px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;circle(-1.5px, +1.5px, -1.5px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, 1px, -1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, 1px, -1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, 1px, -1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, 1px, 1pt, -1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, 1px, 1pt, -1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, 1px, 1pt, -1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, 1px, -1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, 1px, -1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, 1px, -1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, 1px, 1pt, -1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, 1px, 1pt, -1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, 1px, 1pt, -1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm 1in 1px round 1pt -1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm 1in 1px round 1pt -1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm 1in 1px round 1pt -1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(1em, 1em, -1em, 1em)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(1em, 1em, -1em, 1em)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(1em, 1em, -1em, 1em)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(1em, 1em, 1em, -1em)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(1em, 1em, 1em, -1em)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;ellipse(1em, 1em, 1em, -1em)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, -1in, 1px, 1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, -1in, 1px, 1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, -1in, 1px, 1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, -1px, 1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, -1px, 1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;rectangle(1cm, 1mm, 1in, -1px, 1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(-1cm, 1mm, 1in, 1px, 1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(-1cm, 1mm, 1in, 1px, 1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(-1cm, 1mm, 1in, 1px, 1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, -1mm, 1in, 1px, 1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, -1mm, 1in, 1px, 1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, -1mm, 1in, 1px, 1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, -1in, 1px, 1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, -1in, 1px, 1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, -1in, 1px, 1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, -1px, 1pt, 1pc)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, -1px, 1pt, 1pc)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset-rectangle(1cm, 1mm, 1in, -1px, 1pt, 1pc)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(-1cm 1mm 1in 1px)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(-1cm 1mm 1in 1px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(-1cm 1mm 1in 1px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm -1mm 1in 1px)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm -1mm 1in 1px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm -1mm 1in 1px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm -1in 1px)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm -1in 1px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm -1in 1px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm 1in -1px)&quot;) is null
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm 1in -1px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-inside&quot;, &quot;inset(1cm 1mm 1in -1px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapelengthshtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-lengths.html        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -32,7 +32,7 @@
</span><span class="cx"> 
</span><span class="cx"> function testInvalidValue(property, value) {
</span><span class="cx">     testStyleValue(value, null);
</span><del>-    testComputedStyleValue(value, 'auto');
</del><ins>+    testComputedStyleValue(value, 'none');
</ins><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> // absolute lengths - number serialization, units
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapemarginexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-margin-expected.txt (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-margin-expected.txt        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-margin-expected.txt        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -13,7 +13,7 @@
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;5px&quot;) is &quot;5px&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;0&quot;) is &quot;0px&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;-5px&quot;) is &quot;&quot;
</span><del>-PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;auto&quot;) is &quot;&quot;
</del><ins>+PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;none&quot;) is &quot;&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;120%&quot;) is &quot;&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-margin&quot;, &quot;'string'&quot;) is &quot;&quot;
</span><span class="cx"> PASS getComputedStyleValue(&quot;-webkit-shape-margin&quot;, &quot;0&quot;) is &quot;0px&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapeoutsideexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside-expected.txt        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -3,8 +3,8 @@
</span><span class="cx"> On success, you will see a series of &quot;PASS&quot; messages, followed by &quot;TEST COMPLETE&quot;.
</span><span class="cx"> 
</span><span class="cx"> 
</span><del>-PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;auto&quot;) is &quot;auto&quot;
-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;auto&quot;) is &quot;auto&quot;
</del><ins>+PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;none&quot;) is &quot;none&quot;
+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;none&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;rectangle(10px, 20px, 30px, 40px)&quot;
</span><span class="cx"> PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 5px)&quot;) is &quot;rectangle(10px, 20px, 30px, 40px, 5px)&quot;
</span><span class="lines">@@ -118,147 +118,147 @@
</span><span class="cx"> PASS removeBaseURL(getCSSText(&quot;-webkit-shape-outside&quot;, &quot;url('image')&quot;)) is &quot;url(image)&quot;
</span><span class="cx"> PASS removeBaseURL(getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;url('image')&quot;)) is &quot;url(image)&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;calc()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;calc()&quot;) is &quot;auto&quot;
-PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;none&quot;) is &quot;&quot;
-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;none&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;calc()&quot;) is &quot;none&quot;
+PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;auto&quot;) is &quot;&quot;
+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;auto&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset-rectangle(10px, 20px, 30px, 40px, 50px, 60px, 70px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px, 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px, 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px, 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px, 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px, 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px, 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px 20px 30px 40px 50px 60px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px 20px 30px 40px 50px 60px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px 20px 30px 40px 50px 60px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(round)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(round)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(round)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(round 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(round 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(round 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round 10px /)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round 10px /)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round 10px /)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round 20px 30px 40px 50px 60px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round 20px 30px 40px 50px 60px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round 20px 30px 40px 50px 60px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round /)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round /)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round /)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round / 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round / 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(10px round / 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(/)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(/)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(/)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(/ 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(/ 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(/ 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;inset(round /)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(round /)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;inset(round /)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 20px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 20px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 20px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px 20px 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px 20px 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px 20px 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 20px, 30px, 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 20px, 30px, 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px, 20px, 30px, 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px 20px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px 20px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px 20px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10% left)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10% left)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(10px at 10% left)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;circle(at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;circle(at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px, 20px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px, 20px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px, 20px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px, 20px, 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px, 20px, 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px, 20px, 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px 40px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px 40px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px 40px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 10px at 10% left)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 10px at 10% left)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 10px at 10% left)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(10px 20px 30px at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at 10px 10px 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at 10px 10px 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at 10px 10px 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at 10px 10px at center)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at 10px 10px at center)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at 10px 10px at center)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at center center 10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at center center 10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;ellipse(at center center 10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon()&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon()&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon()&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero 10px 20px, 30px 40px, 40px 50px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero,10px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero,10px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero,10px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd,12px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd,12px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(evenodd,12px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(10px, 20px, 30px, 40px, 40px, 50px)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(10px, 20px, 30px, 40px, 40px, 50px)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(10px, 20px, 30px, 40px, 40px, 50px)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;content-box content-box&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;content-box content-box&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;content-box content-box&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;) is &quot;auto&quot;
-PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;auto content-box&quot;) is &quot;&quot;
-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;auto content-box&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;) is &quot;none&quot;
+PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;none content-box&quot;) is &quot;&quot;
+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;none content-box&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;url('shape.svg') content-box&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;url('shape.svg') content-box&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;url('shape.svg') content-box&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;) is &quot;none&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-outside&quot;, &quot;outside-shape&quot;) is &quot;&quot;
</span><del>-PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;outside-shape&quot;) is &quot;auto&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;auto&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;parent: auto, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;
</del><ins>+PASS getComputedStyleValue(&quot;-webkit-shape-outside&quot;, &quot;outside-shape&quot;) is &quot;none&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;none&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;) is &quot;parent: none, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;
</ins><span class="cx"> PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;inherit&quot;) is &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;
</span><del>-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;&quot;, &quot;inherit&quot;) is &quot;parent: auto, child: auto&quot;
-PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;auto&quot;, &quot;inherit&quot;) is &quot;parent: auto, child: auto&quot;
</del><ins>+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;&quot;, &quot;inherit&quot;) is &quot;parent: none, child: none&quot;
+PASS getParentAndChildComputedStylesString(&quot;-webkit-shape-outside&quot;, &quot;none&quot;, &quot;inherit&quot;) is &quot;parent: none, child: none&quot;
</ins><span class="cx"> PASS successfullyParsed is true
</span><span class="cx"> 
</span><span class="cx"> TEST COMPLETE
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapeoutsidehtml"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-outside.html        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -20,20 +20,20 @@
</span><span class="cx"> testLocalURLShapeProperty(&quot;-webkit-shape-outside&quot;, &quot;url(\'image\')&quot;, &quot;url(image)&quot;);
</span><span class="cx"> 
</span><span class="cx"> invalidShapeValues.forEach(function(value, i, a) { 
</span><del>-    testShapePropertyParsingFailure(&quot;-webkit-shape-outside&quot;, value, &quot;auto&quot;) 
</del><ins>+    testShapePropertyParsingFailure(&quot;-webkit-shape-outside&quot;, value, &quot;none&quot;)
</ins><span class="cx"> });
</span><span class="cx"> 
</span><del>-testShapePropertyParsingFailure(&quot;-webkit-shape-outside&quot;, &quot;outside-shape&quot;, &quot;auto&quot;);
</del><ins>+testShapePropertyParsingFailure(&quot;-webkit-shape-outside&quot;, &quot;outside-shape&quot;, &quot;none&quot;);
</ins><span class="cx"> 
</span><span class="cx"> applyToEachArglist(
</span><span class="cx">     testNotInheritedShapeProperty,
</span><span class="cx">     [// [property, parentValue, childValue, expectedValue]
</span><del>-     [&quot;-webkit-shape-outside&quot;, &quot;auto&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;parent: auto, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
-     [&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;],
-     [&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: auto&quot;],
</del><ins>+     [&quot;-webkit-shape-outside&quot;, &quot;none&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;parent: none, child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
+     [&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;initial&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;],
+     [&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: none&quot;],
</ins><span class="cx">      [&quot;-webkit-shape-outside&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;inherit&quot;, &quot;parent: rectangle(10px, 20px, 30px, 40px, 0px, 0px), child: rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
</span><del>-     [&quot;-webkit-shape-outside&quot;, &quot;&quot;, &quot;inherit&quot;, &quot;parent: auto, child: auto&quot;],
-     [&quot;-webkit-shape-outside&quot;, &quot;auto&quot;, &quot;inherit&quot;, &quot;parent: auto, child: auto&quot;]]
</del><ins>+     [&quot;-webkit-shape-outside&quot;, &quot;&quot;, &quot;inherit&quot;, &quot;parent: none, child: none&quot;],
+     [&quot;-webkit-shape-outside&quot;, &quot;none&quot;, &quot;inherit&quot;, &quot;parent: none, child: none&quot;]]
</ins><span class="cx"> );
</span><span class="cx"> &lt;/script&gt;
</span><span class="cx"> &lt;script src=&quot;../../../resources/js-test-post.js&quot;&gt;&lt;/script&gt;
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingshapepaddingexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-shape-padding-expected.txt (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-shape-padding-expected.txt        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-shape-padding-expected.txt        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -13,7 +13,7 @@
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;5px&quot;) is &quot;5px&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;0&quot;) is &quot;0px&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;-5px&quot;) is &quot;&quot;
</span><del>-PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;auto&quot;) is &quot;&quot;
</del><ins>+PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;none&quot;) is &quot;&quot;
</ins><span class="cx"> PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;120%&quot;) is &quot;&quot;
</span><span class="cx"> PASS getCSSText(&quot;-webkit-shape-padding&quot;, &quot;'string'&quot;) is &quot;&quot;
</span><span class="cx"> PASS getComputedStyleValue(&quot;-webkit-shape-padding&quot;, &quot;0&quot;) is &quot;0px&quot;
</span></span></pre></div>
<a id="trunkLayoutTestsfastshapesparsingparsingtestutilsjs"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/fast/shapes/parsing/parsing-test-utils.js (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/fast/shapes/parsing/parsing-test-utils.js        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/LayoutTests/fast/shapes/parsing/parsing-test-utils.js        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -5,7 +5,7 @@
</span><span class="cx"> // or: [&quot;specified value&quot;, &quot;CSS Text value/computed style value&quot;]
</span><span class="cx"> // or: [&quot;specified value&quot;, &quot;CSS Text value&quot;, &quot;Computed style value&quot;]
</span><span class="cx"> var validShapeValues = [
</span><del>-    &quot;auto&quot;,
</del><ins>+    &quot;none&quot;,
</ins><span class="cx">     [&quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;rectangle(10px, 20px, 30px, 40px)&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 0px, 0px)&quot;],
</span><span class="cx">     [&quot;rectangle(10px, 20px, 30px, 40px, 5px)&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 5px)&quot;, &quot;rectangle(10px, 20px, 30px, 40px, 5px, 5px)&quot;],
</span><span class="cx">     &quot;rectangle(10px, 20px, 30px, 40px, 5px, 10px)&quot;,
</span><span class="lines">@@ -77,7 +77,7 @@
</span><span class="cx"> // shape property's computed value is the same as its default.
</span><span class="cx"> var invalidShapeValues = [
</span><span class="cx">     &quot;calc()&quot;,
</span><del>-    &quot;none&quot;,
</del><ins>+    &quot;auto&quot;,
</ins><span class="cx"> 
</span><span class="cx">     &quot;rectangle()&quot;,
</span><span class="cx">     &quot;rectangle(10px)&quot;,
</span><span class="lines">@@ -149,7 +149,7 @@
</span><span class="cx">     &quot;content-box content-box&quot;,
</span><span class="cx">     &quot;polygon(nonzero, 0 0, 10px 10px, 10px 0) polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;,
</span><span class="cx">     &quot;content-box polygon(nonzero, 0 0, 10px 10px, 10px 0) content-box&quot;,
</span><del>-    &quot;auto content-box&quot;,
</del><ins>+    &quot;none content-box&quot;,
</ins><span class="cx">     &quot;url('shape.svg') content-box&quot;,
</span><span class="cx">     &quot;url('shape.svg') polygon(nonzero, 0 0, 10px 10px, 10px 0)&quot;
</span><span class="cx"> ];
</span><span class="lines">@@ -169,7 +169,7 @@
</span><span class="cx"> // Invalid length values for shape-margin and shape-padding.
</span><span class="cx"> var invalidShapeLengths = [
</span><span class="cx">     &quot;-5px&quot;,
</span><del>-    &quot;auto&quot;,
</del><ins>+    &quot;none&quot;,
</ins><span class="cx">     &quot;120%&quot;,
</span><span class="cx">     &quot;\'string\'&quot;
</span><span class="cx"> ];
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/Source/WebCore/ChangeLog        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -1,3 +1,21 @@
</span><ins>+2014-01-07  Bear Travis  &lt;betravis@adobe.com&gt;
+
+        [CSS Shapes] Change default value from 'auto' to 'none'
+        https://bugs.webkit.org/show_bug.cgi?id=126544
+
+        Reviewed by Sam Weinig.
+
+        Update the CSS infrastructure to accept 'none' as the default value
+        for shape-inside and shape-outside.
+
+        Updated existing parsing tests.
+
+        * css/CSSComputedStyleDeclaration.cpp:
+        (WebCore::ComputedStyleExtractor::propertyValue):
+        * css/CSSParser.cpp:
+        (WebCore::CSSParser::parseShapeProperty):
+        * rendering/style/ShapeValue.h:
+
</ins><span class="cx"> 2014-01-07  Hans Muller  &lt;hmuller@adobe.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [CSS Shapes] shape-outside layout incorrect when line spans rounded box rounded corners
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSComputedStyleDeclarationcpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/Source/WebCore/css/CSSComputedStyleDeclaration.cpp        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -2920,7 +2920,7 @@
</span><span class="cx">             return cssValuePool().createValue(style-&gt;shapeImageThreshold(), CSSPrimitiveValue::CSS_NUMBER);
</span><span class="cx">         case CSSPropertyWebkitShapeInside:
</span><span class="cx">             if (!style-&gt;shapeInside())
</span><del>-                return cssValuePool().createIdentifierValue(CSSValueAuto);
</del><ins>+                return cssValuePool().createIdentifierValue(CSSValueNone);
</ins><span class="cx">             if (style-&gt;shapeInside()-&gt;type() == ShapeValue::Box)
</span><span class="cx">                 return valueForBox(style-&gt;shapeInside()-&gt;box());
</span><span class="cx">             if (style-&gt;shapeInside()-&gt;type() == ShapeValue::Outside)
</span><span class="lines">@@ -2934,7 +2934,7 @@
</span><span class="cx">             return valueForBasicShape(style.get(), style-&gt;shapeInside()-&gt;shape());
</span><span class="cx">         case CSSPropertyWebkitShapeOutside:
</span><span class="cx">             if (!style-&gt;shapeOutside())
</span><del>-                return cssValuePool().createIdentifierValue(CSSValueAuto);
</del><ins>+                return cssValuePool().createIdentifierValue(CSSValueNone);
</ins><span class="cx">             if (style-&gt;shapeOutside()-&gt;type() == ShapeValue::Box)
</span><span class="cx">                 return valueForBox(style-&gt;shapeOutside()-&gt;box());
</span><span class="cx">             if (style-&gt;shapeOutside()-&gt;type() == ShapeValue::Image) {
</span></span></pre></div>
<a id="trunkSourceWebCorecssCSSParsercpp"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/css/CSSParser.cpp (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/css/CSSParser.cpp        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/Source/WebCore/css/CSSParser.cpp        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -5868,7 +5868,7 @@
</span><span class="cx">     RefPtr&lt;CSSPrimitiveValue&gt; keywordValue;
</span><span class="cx">     RefPtr&lt;CSSBasicShape&gt; shapeValue;
</span><span class="cx"> 
</span><del>-    if (valueId == CSSValueAuto
</del><ins>+    if (valueId == CSSValueNone
</ins><span class="cx">         || (valueId == CSSValueOutsideShape &amp;&amp; propId == CSSPropertyWebkitShapeInside)) {
</span><span class="cx">         keywordValue = parseValidPrimitive(valueId, value);
</span><span class="cx">         m_valueList-&gt;next();
</span></span></pre></div>
<a id="trunkSourceWebCorerenderingstyleShapeValueh"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/rendering/style/ShapeValue.h (161435 => 161436)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/rendering/style/ShapeValue.h        2014-01-07 18:47:31 UTC (rev 161435)
+++ trunk/Source/WebCore/rendering/style/ShapeValue.h        2014-01-07 18:59:32 UTC (rev 161436)
</span><span class="lines">@@ -41,7 +41,7 @@
</span><span class="cx"> class ShapeValue : public RefCounted&lt;ShapeValue&gt; {
</span><span class="cx"> public:
</span><span class="cx">     enum ShapeValueType {
</span><del>-        // The Auto value is defined by a null ShapeValue*
</del><ins>+        // The None value is defined by a null ShapeValue*
</ins><span class="cx">         Shape,
</span><span class="cx">         Box,
</span><span class="cx">         Outside,
</span></span></pre>
</div>
</div>

</body>
</html>