<!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>[205579] 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/205579">205579</a></dd>
<dt>Author</dt> <dd>simon.fraser@apple.com</dd>
<dt>Date</dt> <dd>2016-09-07 18:26:08 -0700 (Wed, 07 Sep 2016)</dd>
</dl>

<h3>Log Message</h3>
<pre>Enable the &lt;meter&gt; element on iOS
https://bugs.webkit.org/show_bug.cgi?id=161714
rdar://problem/8978410

Reviewed by Tim Horton.

Source/JavaScriptCore:

Define ENABLE_METER_ELEMENT unconditionally now.

* Configurations/FeatureDefines.xcconfig:

Source/WebCore:

Define ENABLE_METER_ELEMENT unconditionally now.

Rendering falls back to html.css rendering, which makes &lt;meter&gt; looks similar between
macOS and iOS.

Tested by enabling existing tests.

* Configurations/FeatureDefines.xcconfig:

Source/WebKit/mac:

Define ENABLE_METER_ELEMENT unconditionally now.

* Configurations/FeatureDefines.xcconfig:

Source/WebKit2:

Define ENABLE_METER_ELEMENT unconditionally now.

* Configurations/FeatureDefines.xcconfig:

Tools:

Define ENABLE_METER_ELEMENT unconditionally now.

* TestWebKitAPI/Configurations/FeatureDefines.xcconfig:

LayoutTests:

* platform/ios-simulator-wk1/TestExpectations:
* platform/ios-simulator/TestExpectations:
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt:
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt:
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt:
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt: Added.
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-optimums-expected.txt:
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt:
* platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-expected.txt:
* platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/form-control-infrastructure/form-expected.txt:
* platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt:
* platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-meter-element/meter-expected.txt:
* platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt:</pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsChangeLog">trunk/LayoutTests/ChangeLog</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorTestExpectations">trunk/LayoutTests/platform/ios-simulator/TestExpectations</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterappearancescapacityexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterappearancesratingrelevancyexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterboundaryvaluesexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeteroptimumsexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-optimums-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterstyleschangingpseudoexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterstylesexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsformsformcontrolinfrastructureformexpectedtxt">trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/form-control-infrastructure/form-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsformsthelabelelementlabelableelementsexpectedtxt">trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsformsthemeterelementmeterexpectedtxt">trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-meter-element/meter-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsinterfacesexpectedtxt">trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt</a></li>
<li><a href="#trunkLayoutTestsplatformiossimulatorwk1TestExpectations">trunk/LayoutTests/platform/ios-simulator-wk1/TestExpectations</a></li>
<li><a href="#trunkSourceJavaScriptCoreChangeLog">trunk/Source/JavaScriptCore/ChangeLog</a></li>
<li><a href="#trunkSourceJavaScriptCoreConfigurationsFeatureDefinesxcconfig">trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig</a></li>
<li><a href="#trunkSourceWebCoreChangeLog">trunk/Source/WebCore/ChangeLog</a></li>
<li><a href="#trunkSourceWebCoreConfigurationsFeatureDefinesxcconfig">trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig</a></li>
<li><a href="#trunkSourceWebKitmacChangeLog">trunk/Source/WebKit/mac/ChangeLog</a></li>
<li><a href="#trunkSourceWebKitmacConfigurationsFeatureDefinesxcconfig">trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig</a></li>
<li><a href="#trunkSourceWebKit2ChangeLog">trunk/Source/WebKit2/ChangeLog</a></li>
<li><a href="#trunkSourceWebKit2ConfigurationsFeatureDefinesxcconfig">trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig</a></li>
<li><a href="#trunkToolsChangeLog">trunk/Tools/ChangeLog</a></li>
<li><a href="#trunkToolsTestWebKitAPIConfigurationsFeatureDefinesxcconfig">trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig</a></li>
</ul>

<h3>Added Paths</h3>
<ul>
<li><a href="#trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterelementrepaintonupdatevalueexpectedtxt">trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkLayoutTestsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/ChangeLog (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/ChangeLog        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/ChangeLog        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,3 +1,25 @@
</span><ins>+2016-09-07  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Enable the &lt;meter&gt; element on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=161714
+        rdar://problem/8978410
+
+        Reviewed by Tim Horton.
+
+        * platform/ios-simulator-wk1/TestExpectations:
+        * platform/ios-simulator/TestExpectations:
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt:
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt:
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt:
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt: Added.
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-optimums-expected.txt:
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt:
+        * platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-expected.txt:
+        * platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/form-control-infrastructure/form-expected.txt:
+        * platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt:
+        * platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-meter-element/meter-expected.txt:
+        * platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt:
+
</ins><span class="cx"> 2016-09-07  Eric Carlson  &lt;eric.carlson@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [MediaStream] applyConstraints pt. 2 - advanced constraints
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorTestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/TestExpectations (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/TestExpectations        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/TestExpectations        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1126,13 +1126,6 @@
</span><span class="cx"> fast/dom/HTMLImageElement/sizes/image-sizes-1x.html [ Failure ]
</span><span class="cx"> fast/dom/HTMLInputElement/input-slider-update-styled.html [ Failure ]
</span><span class="cx"> fast/dom/HTMLInputElement/input-slider-update.html [ Failure ]
</span><del>-fast/dom/HTMLMeterElement/meter-clone.html [ Failure ]
-fast/dom/HTMLMeterElement/meter-element-markup.html [ Failure ]
-fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value.html [ Failure ]
-fast/dom/HTMLMeterElement/meter-element-with-child-crash.html [ Failure ]
-fast/dom/HTMLMeterElement/meter-element.html [ Failure ]
-fast/dom/HTMLMeterElement/meter-percent-size.html [ Failure ]
-fast/dom/HTMLMeterElement/set-meter-properties.html [ Failure ]
</del><span class="cx"> fast/dom/MutationObserver/end-of-task-delivery.html [ Failure ]
</span><span class="cx"> fast/dom/NavigatorContentUtils/is-protocol-handler-registered.html [ Failure ]
</span><span class="cx"> fast/dom/Range/getBoundingClientRect.html [ Failure ]
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterappearancescapacityexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-capacity-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -15,52 +15,82 @@
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 88x19
</span><span class="cx">               text run at (0,0) width 88: &quot;value=10/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 80x16
</ins><span class="cx">           RenderListItem {LI} at (40,20) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=8/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
</ins><span class="cx">           RenderListItem {LI} at (40,40) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=5/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,60) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=2/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 16x16
</ins><span class="cx">           RenderListItem {LI} at (40,80) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=0/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">           RenderListItem {LI} at (40,100) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 38x19
</span><span class="cx">               text run at (0,0) width 38: &quot;RTL:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (40,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,120) size 744x50 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 32x19
</span><span class="cx">               text run at (0,0) width 32: &quot;Tall:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x50
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x50
+              RenderMeter {DIV} at (0,0) size 80x50
+                RenderBlock {DIV} at (0,0) size 80x50
+                  RenderBlock {DIV} at (0,0) size 40x50
</ins><span class="cx">           RenderListItem {LI} at (40,170) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 44x19
</span><span class="cx">               text run at (0,0) width 44: &quot;Short:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x5
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x5
+              RenderMeter {DIV} at (0,0) size 80x5
+                RenderBlock {DIV} at (0,0) size 80x5
+                  RenderBlock {DIV} at (0,0) size 24x5
</ins><span class="cx">           RenderListItem {LI} at (40,190) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 42x19
</span><span class="cx">               text run at (0,0) width 42: &quot;Wide:&quot;
</span><del>-            RenderBlock (floating) {METER} at (444,0) size 300x0
</del><ins>+            RenderBlock (floating) {METER} at (444,0) size 300x16
+              RenderMeter {DIV} at (0,0) size 300x16
+                RenderBlock {DIV} at (0,0) size 300x16
+                  RenderBlock {DIV} at (0,0) size 150x16
</ins><span class="cx">           RenderListItem {LI} at (40,210) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 59x19
</span><span class="cx">               text run at (0,0) width 59: &quot;Narrow:&quot;
</span><del>-            RenderBlock (floating) {METER} at (714,0) size 30x0
</del><ins>+            RenderBlock (floating) {METER} at (714,0) size 30x16
+              RenderMeter {DIV} at (0,0) size 30x16
+                RenderBlock {DIV} at (0,0) size 30x16
+                  RenderBlock {DIV} at (0,0) size 15x16
</ins><span class="cx">       RenderBlock {H2} at (0,315) size 784x21
</span><span class="cx">         RenderText {#text} at (0,0) size 241x19
</span><span class="cx">           text run at (0,0) width 241: &quot;continuous-capacity-level-indicator&quot;
</span><span class="lines">@@ -70,49 +100,79 @@
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 88x19
</span><span class="cx">               text run at (0,0) width 88: &quot;value=10/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 80x16
</ins><span class="cx">           RenderListItem {LI} at (40,20) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=8/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
</ins><span class="cx">           RenderListItem {LI} at (40,40) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=5/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,60) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=2/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 16x16
</ins><span class="cx">           RenderListItem {LI} at (40,80) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=0/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">           RenderListItem {LI} at (40,100) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 38x19
</span><span class="cx">               text run at (0,0) width 38: &quot;RTL:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (40,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,120) size 744x50 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 32x19
</span><span class="cx">               text run at (0,0) width 32: &quot;Tall:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x50
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x50
+              RenderMeter {DIV} at (0,0) size 80x50
+                RenderBlock {DIV} at (0,0) size 80x50
+                  RenderBlock {DIV} at (0,0) size 40x50
</ins><span class="cx">           RenderListItem {LI} at (40,170) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 44x19
</span><span class="cx">               text run at (0,0) width 44: &quot;Short:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x5
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x5
+              RenderMeter {DIV} at (0,0) size 80x5
+                RenderBlock {DIV} at (0,0) size 80x5
+                  RenderBlock {DIV} at (0,0) size 24x5
</ins><span class="cx">           RenderListItem {LI} at (40,190) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 42x19
</span><span class="cx">               text run at (0,0) width 42: &quot;Wide:&quot;
</span><del>-            RenderBlock (floating) {METER} at (444,0) size 300x0
</del><ins>+            RenderBlock (floating) {METER} at (444,0) size 300x16
+              RenderMeter {DIV} at (0,0) size 300x16
+                RenderBlock {DIV} at (0,0) size 300x16
+                  RenderBlock {DIV} at (0,0) size 150x16
</ins><span class="cx">           RenderListItem {LI} at (40,210) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 59x19
</span><span class="cx">               text run at (0,0) width 59: &quot;Narrow:&quot;
</span><del>-            RenderBlock (floating) {METER} at (714,0) size 30x0
</del><ins>+            RenderBlock (floating) {METER} at (714,0) size 30x16
+              RenderMeter {DIV} at (0,0) size 30x16
+                RenderBlock {DIV} at (0,0) size 30x16
+                  RenderBlock {DIV} at (0,0) size 15x16
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterappearancesratingrelevancyexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-appearances-rating-relevancy-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -15,52 +15,82 @@
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 88x19
</span><span class="cx">               text run at (0,0) width 88: &quot;value=10/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 80x16
</ins><span class="cx">           RenderListItem {LI} at (40,20) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=8/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
</ins><span class="cx">           RenderListItem {LI} at (40,40) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=5/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,60) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=2/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 16x16
</ins><span class="cx">           RenderListItem {LI} at (40,80) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=0/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">           RenderListItem {LI} at (40,100) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 38x19
</span><span class="cx">               text run at (0,0) width 38: &quot;RTL:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (40,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,120) size 744x50 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 32x19
</span><span class="cx">               text run at (0,0) width 32: &quot;Tall:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x50
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x50
+              RenderMeter {DIV} at (0,0) size 80x50
+                RenderBlock {DIV} at (0,0) size 80x50
+                  RenderBlock {DIV} at (0,0) size 40x50
</ins><span class="cx">           RenderListItem {LI} at (40,170) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 44x19
</span><span class="cx">               text run at (0,0) width 44: &quot;Short:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x5
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x5
+              RenderMeter {DIV} at (0,0) size 80x5
+                RenderBlock {DIV} at (0,0) size 80x5
+                  RenderBlock {DIV} at (0,0) size 24x5
</ins><span class="cx">           RenderListItem {LI} at (40,190) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 42x19
</span><span class="cx">               text run at (0,0) width 42: &quot;Wide:&quot;
</span><del>-            RenderBlock (floating) {METER} at (444,0) size 300x0
</del><ins>+            RenderBlock (floating) {METER} at (444,0) size 300x16
+              RenderMeter {DIV} at (0,0) size 300x16
+                RenderBlock {DIV} at (0,0) size 300x16
+                  RenderBlock {DIV} at (0,0) size 150x16
</ins><span class="cx">           RenderListItem {LI} at (40,210) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 59x19
</span><span class="cx">               text run at (0,0) width 59: &quot;Narrow:&quot;
</span><del>-            RenderBlock (floating) {METER} at (714,0) size 30x0
</del><ins>+            RenderBlock (floating) {METER} at (714,0) size 30x16
+              RenderMeter {DIV} at (0,0) size 30x16
+                RenderBlock {DIV} at (0,0) size 30x16
+                  RenderBlock {DIV} at (0,0) size 15x16
</ins><span class="cx">       RenderBlock {H2} at (0,315) size 784x21
</span><span class="cx">         RenderText {#text} at (0,0) size 170x19
</span><span class="cx">           text run at (0,0) width 170: &quot;relevancy-level-indicator&quot;
</span><span class="lines">@@ -70,49 +100,79 @@
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 88x19
</span><span class="cx">               text run at (0,0) width 88: &quot;value=10/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 80x16
</ins><span class="cx">           RenderListItem {LI} at (40,20) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=8/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
</ins><span class="cx">           RenderListItem {LI} at (40,40) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=5/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,60) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=2/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 16x16
</ins><span class="cx">           RenderListItem {LI} at (40,80) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 80x19
</span><span class="cx">               text run at (0,0) width 80: &quot;value=0/10:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">           RenderListItem {LI} at (40,100) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 38x19
</span><span class="cx">               text run at (0,0) width 38: &quot;RTL:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x0
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x16
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (40,0) size 40x16
</ins><span class="cx">           RenderListItem {LI} at (40,120) size 744x50 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 32x19
</span><span class="cx">               text run at (0,0) width 32: &quot;Tall:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x50
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x50
+              RenderMeter {DIV} at (0,0) size 80x50
+                RenderBlock {DIV} at (0,0) size 80x50
+                  RenderBlock {DIV} at (0,0) size 40x50
</ins><span class="cx">           RenderListItem {LI} at (40,170) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 44x19
</span><span class="cx">               text run at (0,0) width 44: &quot;Short:&quot;
</span><del>-            RenderBlock (floating) {METER} at (744,0) size 0x5
</del><ins>+            RenderBlock (floating) {METER} at (664,0) size 80x5
+              RenderMeter {DIV} at (0,0) size 80x5
+                RenderBlock {DIV} at (0,0) size 80x5
+                  RenderBlock {DIV} at (0,0) size 24x5
</ins><span class="cx">           RenderListItem {LI} at (40,190) size 744x20 [bgcolor=#EEEEEE]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 42x19
</span><span class="cx">               text run at (0,0) width 42: &quot;Wide:&quot;
</span><del>-            RenderBlock (floating) {METER} at (444,0) size 300x0
</del><ins>+            RenderBlock (floating) {METER} at (444,0) size 300x16
+              RenderMeter {DIV} at (0,0) size 300x16
+                RenderBlock {DIV} at (0,0) size 300x16
+                  RenderBlock {DIV} at (0,0) size 150x16
</ins><span class="cx">           RenderListItem {LI} at (40,210) size 744x20 [bgcolor=#CCCCCC]
</span><span class="cx">             RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">             RenderText {#text} at (0,0) size 59x19
</span><span class="cx">               text run at (0,0) width 59: &quot;Narrow:&quot;
</span><del>-            RenderBlock (floating) {METER} at (714,0) size 30x0
</del><ins>+            RenderBlock (floating) {METER} at (714,0) size 30x16
+              RenderMeter {DIV} at (0,0) size 30x16
+                RenderBlock {DIV} at (0,0) size 30x16
+                  RenderBlock {DIV} at (0,0) size 15x16
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterboundaryvaluesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-boundary-values-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -16,17 +16,23 @@
</span><span class="cx">           RenderInline {B} at (0,0) size 8x19
</span><span class="cx">             RenderText {#text} at (0,0) size 8x19
</span><span class="cx">               text run at (0,0) width 8: &quot;9&quot;
</span><del>-          RenderText {#text} at (8,0) size 104x19
-            text run at (8,0) width 104: &quot;|10,20,30,40,50:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (8,0) size 108x19
+            text run at (8,0) width 108: &quot;|10,20,30,40,50: &quot;
+          RenderBlock {METER} at (115,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,40) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderInline {B} at (0,0) size 16x19
</span><span class="cx">             RenderText {#text} at (0,0) size 16x19
</span><span class="cx">               text run at (0,0) width 16: &quot;10&quot;
</span><del>-          RenderText {#text} at (16,0) size 85x19
-            text run at (16,0) width 85: &quot;,20,30,40,50:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (16,0) size 89x19
+            text run at (16,0) width 89: &quot;,20,30,40,50: &quot;
+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,60) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 20x19
</span><span class="lines">@@ -36,9 +42,12 @@
</span><span class="cx">               text run at (20,0) width 16: &quot;20&quot;
</span><span class="cx">           RenderText {#text} at (36,0) size 69x19
</span><span class="cx">             text run at (36,0) width 69: &quot;,30,40,50: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 113x19
-            text run at (104,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 20x16
+          RenderText {#text} at (184,0) size 113x19
+            text run at (184,0) width 113: &quot;(should be green)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,80) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 40x19
</span><span class="lines">@@ -48,9 +57,12 @@
</span><span class="cx">               text run at (40,0) width 16: &quot;30&quot;
</span><span class="cx">           RenderText {#text} at (56,0) size 49x19
</span><span class="cx">             text run at (56,0) width 49: &quot;,40,50: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 113x19
-            text run at (104,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 40x16
+          RenderText {#text} at (184,0) size 113x19
+            text run at (184,0) width 113: &quot;(should be green)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,100) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 60x19
</span><span class="lines">@@ -60,9 +72,12 @@
</span><span class="cx">               text run at (60,0) width 16: &quot;40&quot;
</span><span class="cx">           RenderText {#text} at (76,0) size 29x19
</span><span class="cx">             text run at (76,0) width 29: &quot;,50: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 113x19
-            text run at (104,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 60x16
+          RenderText {#text} at (184,0) size 113x19
+            text run at (184,0) width 113: &quot;(should be green)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,120) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 80x19
</span><span class="lines">@@ -72,9 +87,12 @@
</span><span class="cx">               text run at (80,0) width 16: &quot;50&quot;
</span><span class="cx">           RenderText {#text} at (96,0) size 9x19
</span><span class="cx">             text run at (96,0) width 9: &quot;: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 121x19
-            text run at (104,0) width 121: &quot;(should be yellow)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+          RenderText {#text} at (184,0) size 121x19
+            text run at (184,0) width 121: &quot;(should be yellow)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,140) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 100x19
</span><span class="lines">@@ -84,9 +102,12 @@
</span><span class="cx">               text run at (99,0) width 17: &quot;51&quot;
</span><span class="cx">           RenderText {#text} at (115,0) size 9x19
</span><span class="cx">             text run at (115,0) width 9: &quot;: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (123,0) size 121x19
-            text run at (123,0) width 121: &quot;(should be yellow)&quot;
</del><ins>+          RenderBlock {METER} at (123,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+          RenderText {#text} at (203,0) size 121x19
+            text run at (203,0) width 121: &quot;(should be yellow)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,160) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 20x19
</span><span class="lines">@@ -94,9 +115,12 @@
</span><span class="cx">           RenderInline {B} at (0,0) size 16x19
</span><span class="cx">             RenderText {#text} at (20,0) size 16x19
</span><span class="cx">               text run at (20,0) width 16: &quot;10&quot;
</span><del>-          RenderText {#text} at (36,0) size 65x19
-            text run at (36,0) width 65: &quot;,30,40,50:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (36,0) size 69x19
+            text run at (36,0) width 69: &quot;,30,40,50: &quot;
+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,180) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 60x19
</span><span class="lines">@@ -106,17 +130,23 @@
</span><span class="cx">               text run at (60,0) width 16: &quot;40&quot;
</span><span class="cx">           RenderText {#text} at (76,0) size 29x19
</span><span class="cx">             text run at (76,0) width 29: &quot;,40: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 113x19
-            text run at (104,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+          RenderText {#text} at (184,0) size 113x19
+            text run at (184,0) width 113: &quot;(should be green)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,200) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderInline {B} at (0,0) size 8x19
</span><span class="cx">             RenderText {#text} at (0,0) size 8x19
</span><span class="cx">               text run at (0,0) width 8: &quot;9&quot;
</span><del>-          RenderText {#text} at (8,0) size 104x19
-            text run at (8,0) width 104: &quot;|10,10,10,20,30:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (8,0) size 108x19
+            text run at (8,0) width 108: &quot;|10,10,10,20,30: &quot;
+          RenderBlock {METER} at (115,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,220) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 40x19
</span><span class="lines">@@ -124,9 +154,12 @@
</span><span class="cx">           RenderInline {B} at (0,0) size 16x19
</span><span class="cx">             RenderText {#text} at (40,0) size 16x19
</span><span class="cx">               text run at (40,0) width 16: &quot;10&quot;
</span><del>-          RenderText {#text} at (56,0) size 45x19
-            text run at (56,0) width 45: &quot;,20,30:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (56,0) size 49x19
+            text run at (56,0) width 49: &quot;,20,30: &quot;
+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,240) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 40x19
</span><span class="lines">@@ -136,9 +169,12 @@
</span><span class="cx">               text run at (40,0) width 16: &quot;30&quot;
</span><span class="cx">           RenderText {#text} at (56,0) size 49x19
</span><span class="cx">             text run at (56,0) width 49: &quot;,30,30: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 113x19
-            text run at (104,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+          RenderText {#text} at (184,0) size 113x19
+            text run at (184,0) width 113: &quot;(should be green)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,260) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 100x19
</span><span class="lines">@@ -148,9 +184,12 @@
</span><span class="cx">               text run at (99,0) width 17: &quot;31&quot;
</span><span class="cx">           RenderText {#text} at (115,0) size 9x19
</span><span class="cx">             text run at (115,0) width 9: &quot;: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (123,0) size 113x19
-            text run at (123,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (123,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+          RenderText {#text} at (203,0) size 113x19
+            text run at (203,0) width 113: &quot;(should be green)&quot;
</ins><span class="cx">         RenderListItem {LI} at (40,280) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><span class="cx">           RenderText {#text} at (0,0) size 40x19
</span><span class="lines">@@ -160,6 +199,9 @@
</span><span class="cx">               text run at (40,0) width 16: &quot;20&quot;
</span><span class="cx">           RenderText {#text} at (56,0) size 49x19
</span><span class="cx">             text run at (56,0) width 49: &quot;,20,30: &quot;
</span><del>-          RenderInline {METER} at (0,0) size 1x19
-          RenderText {#text} at (104,0) size 113x19
-            text run at (104,0) width 113: &quot;(should be green)&quot;
</del><ins>+          RenderBlock {METER} at (104,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 40x16
+          RenderText {#text} at (184,0) size 113x19
+            text run at (184,0) width 113: &quot;(should be green)&quot;
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterelementrepaintonupdatevalueexpectedtxt"></a>
<div class="addfile"><h4>Added: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt (0 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt                                (rev 0)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-element-repaint-on-update-value-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -0,0 +1,17 @@
</span><ins>+layer at (0,0) size 800x600
+  RenderView at (0,0) size 800x600
+layer at (0,0) size 800x600
+  RenderBlock {HTML} at (0,0) size 800x600
+    RenderBody {BODY} at (8,8) size 784x584
+      RenderBlock {METER} at (0,2) size 80x17
+        RenderMeter {DIV} at (0,0) size 80x16
+          RenderBlock {DIV} at (0,0) size 80x16
+            RenderBlock {DIV} at (0,0) size 40x16
+      RenderText {#text} at (80,0) size 4x19
+        text run at (80,0) width 4: &quot; &quot;
+      RenderBlock {METER} at (84,2) size 80x17
+        RenderMeter {DIV} at (0,0) size 80x16
+          RenderBlock {DIV} at (0,0) size 80x16
+            RenderBlock {DIV} at (0,0) size 40x16
+      RenderText {#text} at (0,0) size 0x0
+      RenderText {#text} at (0,0) size 0x0
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeteroptimumsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-optimums-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-optimums-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-optimums-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -15,29 +15,44 @@
</span><span class="cx">       RenderBlock {UL} at (0,149) size 784x101
</span><span class="cx">         RenderListItem {LI} at (40,0) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=150:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=150: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 20x16
</ins><span class="cx">         RenderListItem {LI} at (40,20) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=450:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=450: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 36x16
</ins><span class="cx">         RenderListItem {LI} at (40,40) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=750:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=750: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 60x16
</ins><span class="cx">         RenderListItem {LI} at (40,60) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 57x19
-            text run at (0,0) width 57: &quot;value=0:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 61x19
+            text run at (0,0) width 61: &quot;value=0: &quot;
+          RenderBlock {METER} at (60,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,80) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 81x19
-            text run at (0,0) width 81: &quot;value=1000:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 85x19
+            text run at (0,0) width 85: &quot;value=1000: &quot;
+          RenderBlock {METER} at (84,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
</ins><span class="cx">       RenderBlock {H2} at (0,269) size 784x31
</span><span class="cx">         RenderText {#text} at (0,1) size 144x28
</span><span class="cx">           text run at (0,1) width 144: &quot;optimum=150&quot;
</span><span class="lines">@@ -44,29 +59,44 @@
</span><span class="cx">       RenderBlock {UL} at (0,319) size 784x101
</span><span class="cx">         RenderListItem {LI} at (40,0) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=150:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=150: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 20x16
</ins><span class="cx">         RenderListItem {LI} at (40,20) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=450:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=450: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 36x16
</ins><span class="cx">         RenderListItem {LI} at (40,40) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=750:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=750: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 60x16
</ins><span class="cx">         RenderListItem {LI} at (40,60) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 57x19
-            text run at (0,0) width 57: &quot;value=0:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 61x19
+            text run at (0,0) width 61: &quot;value=0: &quot;
+          RenderBlock {METER} at (60,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,80) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 81x19
-            text run at (0,0) width 81: &quot;value=1000:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 85x19
+            text run at (0,0) width 85: &quot;value=1000: &quot;
+          RenderBlock {METER} at (84,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
</ins><span class="cx">       RenderBlock {H2} at (0,438) size 784x31
</span><span class="cx">         RenderText {#text} at (0,1) size 144x28
</span><span class="cx">           text run at (0,1) width 144: &quot;optimum=750&quot;
</span><span class="lines">@@ -73,26 +103,41 @@
</span><span class="cx">       RenderBlock {UL} at (0,488) size 784x101
</span><span class="cx">         RenderListItem {LI} at (40,0) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=150:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=150: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 20x16
</ins><span class="cx">         RenderListItem {LI} at (40,20) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=450:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=450: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 36x16
</ins><span class="cx">         RenderListItem {LI} at (40,40) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 73x19
-            text run at (0,0) width 73: &quot;value=750:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 77x19
+            text run at (0,0) width 77: &quot;value=750: &quot;
+          RenderBlock {METER} at (76,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 60x16
</ins><span class="cx">         RenderListItem {LI} at (40,60) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 57x19
-            text run at (0,0) width 57: &quot;value=0:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 61x19
+            text run at (0,0) width 61: &quot;value=0: &quot;
+          RenderBlock {METER} at (60,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 0x16
</ins><span class="cx">         RenderListItem {LI} at (40,80) size 744x20
</span><span class="cx">           RenderListMarker at (-18,0) size 7x19: bullet
</span><del>-          RenderText {#text} at (0,0) size 81x19
-            text run at (0,0) width 81: &quot;value=1000:&quot;
-          RenderInline {METER} at (0,0) size 0x0
</del><ins>+          RenderText {#text} at (0,0) size 85x19
+            text run at (0,0) width 85: &quot;value=1000: &quot;
+          RenderBlock {METER} at (84,2) size 81x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterstyleschangingpseudoexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-changing-pseudo-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -2,7 +2,7 @@
</span><span class="cx">   RenderView at (0,0) size 800x600
</span><span class="cx"> layer at (0,0) size 800x600
</span><span class="cx">   RenderBlock {HTML} at (0,0) size 800x600
</span><del>-    RenderBody {BODY} at (8,8) size 784x576
</del><ins>+    RenderBody {BODY} at (8,8) size 784x584
</ins><span class="cx">       RenderBlock {H1} at (0,0) size 784x38
</span><span class="cx">         RenderText {#text} at (0,1) size 508x36
</span><span class="cx">           text run at (0,1) width 508: &quot;Dynamically changing pseudo classes&quot;
</span><span class="lines">@@ -9,6 +9,9 @@
</span><span class="cx">       RenderBlock {P} at (0,59) size 784x21
</span><span class="cx">         RenderText {#text} at (0,0) size 659x19
</span><span class="cx">           text run at (0,0) width 659: &quot;Following meter gauge should be solid green - Changing the paseudo class by changing value attribute&quot;
</span><del>-      RenderBlock (anonymous) at (0,95) size 784x0
-        RenderInline {METER} at (0,0) size 0x0
</del><ins>+      RenderBlock (anonymous) at (0,95) size 784x16
+        RenderBlock {METER} at (0,-1) size 80x17
+          RenderMeter {DIV} at (0,0) size 80x16
+            RenderBlock {DIV} at (0,0) size 80x16 [bgcolor=#808080]
+              RenderBlock {DIV} at (0,0) size 72x16 [bgcolor=#008000]
</ins><span class="cx">         RenderText {#text} at (0,0) size 0x0
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorfastdomHTMLMeterElementmeterstylesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/fast/dom/HTMLMeterElement/meter-styles-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -6,89 +6,147 @@
</span><span class="cx">       RenderBlock {H2} at (3,0) size 778x20
</span><span class="cx">         RenderText {#text} at (0,0) size 357x19
</span><span class="cx">           text run at (0,0) width 357: &quot;Horizontal meters with the non-themed default style&quot;
</span><del>-      RenderBlock {UL} at (3,23) size 778x0
-        RenderListItem {LI} at (43,0) size 732x0
-          RenderInline {METER} at (0,0) size 0x0
-          RenderText {#text} at (0,0) size 0x0
-          RenderInline {METER} at (0,0) size 0x0
-          RenderText {#text} at (0,0) size 0x0
-          RenderInline {METER} at (0,0) size 0x0
-        RenderListItem {LI} at (43,0) size 732x0
-          RenderInline {METER} at (0,0) size 0x0
-          RenderText {#text} at (0,0) size 0x0
-          RenderInline {METER} at (0,0) size 0x0
-          RenderText {#text} at (0,0) size 0x0
-          RenderInline {METER} at (0,0) size 0x0
-      RenderBlock {H2} at (3,23) size 778x21
</del><ins>+      RenderBlock {UL} at (3,23) size 778x65
+        RenderListItem {LI} at (43,0) size 732x20
+          RenderBlock {METER} at (0,2) size 80x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 20x16
+          RenderText {#text} at (80,0) size 4x19
+            text run at (80,0) width 4: &quot; &quot;
+          RenderBlock {METER} at (84,2) size 80x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 36x16
+          RenderText {#text} at (164,0) size 4x19
+            text run at (164,0) width 4: &quot; &quot;
+          RenderBlock {METER} at (168,2) size 80x17
+            RenderMeter {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 60x16
+        RenderListItem {LI} at (43,23) size 732x42
+          RenderBlock {METER} at (0,-1) size 30x41
+            RenderMeter {DIV} at (0,0) size 30x40
+              RenderBlock {DIV} at (0,0) size 30x40
+                RenderBlock {DIV} at (0,0) size 8x40
+          RenderText {#text} at (30,21) size 4x19
+            text run at (30,21) width 4: &quot; &quot;
+          RenderBlock {METER} at (34,-1) size 30x41
+            RenderMeter {DIV} at (0,0) size 30x40
+              RenderBlock {DIV} at (0,0) size 30x40
+                RenderBlock {DIV} at (0,0) size 14x40
+          RenderText {#text} at (64,21) size 4x19
+            text run at (64,21) width 4: &quot; &quot;
+          RenderBlock {METER} at (68,-1) size 30x41
+            RenderMeter {DIV} at (0,0) size 30x40
+              RenderBlock {DIV} at (0,0) size 30x40
+                RenderBlock {DIV} at (0,0) size 23x40
+      RenderBlock {H2} at (3,90) size 778x21
</ins><span class="cx">         RenderText {#text} at (0,0) size 153x19
</span><span class="cx">           text run at (0,0) width 153: &quot;Providing meter styles&quot;
</span><del>-      RenderBlock {DIV} at (0,46) size 784x67 [bgcolor=#EEEEEE]
-        RenderBlock {UL} at (3,0) size 778x67
</del><ins>+      RenderBlock {DIV} at (0,113) size 784x75 [bgcolor=#EEEEEE]
+        RenderBlock {UL} at (3,0) size 778x74
</ins><span class="cx">           RenderListItem {LI} at (43,0) size 732x20
</span><del>-            RenderInline {METER} at (0,0) size 30x29 [bgcolor=#AAAACC] [border: (5px solid #222244) (20px solid #222244) (5px solid #222244) (10px solid #222244)]
-            RenderText {#text} at (30,0) size 68x19
-              text run at (30,0) width 68: &quot;has border&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17 [bgcolor=#AAAACC] [border: (5px solid #222244) (20px solid #222244) (5px solid #222244) (10px solid #222244)]
+              RenderMeter {DIV} at (10,5) size 50x6
+                RenderBlock {DIV} at (0,0) size 50x6
+                  RenderBlock {DIV} at (0,0) size 40x6
+            RenderText {#text} at (80,0) size 72x19
+              text run at (80,0) width 72: &quot; has border&quot;
</ins><span class="cx">           RenderListItem {LI} at (43,23) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 30x29 [bgcolor=#AAAACC]
-            RenderText {#text} at (30,0) size 77x19
-              text run at (30,0) width 77: &quot;has padding&quot;
-          RenderListItem {LI} at (43,46) size 732x21
-            RenderInline {METER} at (0,0) size 0x19 [bgcolor=#AAAACC]
-            RenderText {#text} at (30,0) size 71x19
-              text run at (30,0) width 71: &quot;has margin&quot;
-      RenderBlock {H2} at (3,115) size 778x21
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17 [bgcolor=#AAAACC]
+              RenderMeter {DIV} at (10,5) size 50x6
+                RenderBlock {DIV} at (0,0) size 50x6
+                  RenderBlock {DIV} at (0,0) size 40x6
+            RenderText {#text} at (80,0) size 81x19
+              text run at (80,0) width 81: &quot; has padding&quot;
+          RenderListItem {LI} at (43,46) size 732x28
+            RenderBlock {METER} at (10,4) size 80x17 [bgcolor=#AAAACC]
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
+            RenderText {#text} at (110,7) size 75x19
+              text run at (110,7) width 75: &quot; has margin&quot;
+      RenderBlock {H2} at (3,190) size 778x21
</ins><span class="cx">         RenderText {#text} at (0,0) size 226x19
</span><span class="cx">           text run at (0,0) width 226: &quot;Providing bar and/or value styles&quot;
</span><del>-      RenderBlock {DIV} at (0,139) size 784x183 [bgcolor=#EEEEEE]
</del><ins>+      RenderBlock {DIV} at (0,213) size 784x183 [bgcolor=#EEEEEE]
</ins><span class="cx">         RenderBlock {UL} at (3,0) size 778x90
</span><span class="cx">           RenderBlock (anonymous) at (40,0) size 738x20
</span><span class="cx">             RenderText {#text} at (0,0) size 486x19
</span><span class="cx">               text run at (0,0) width 486: &quot;default -webkit-appearance, thus should use platform theme (only for Mac.)&quot;
</span><span class="cx">           RenderListItem {LI} at (43,23) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 213x19
-              text run at (0,0) width 213: &quot;has bar style but should ignore it.&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16 [bgcolor=#008000] [border: (2px solid #77CC77)]
+            RenderText {#text} at (80,0) size 217x19
+              text run at (80,0) width 217: &quot; has bar style but should ignore it.&quot;
</ins><span class="cx">           RenderListItem {LI} at (43,46) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 228x19
-              text run at (0,0) width 228: &quot;has value style but should ignore it.&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16 [bgcolor=#808080] [border: (2px solid #222222)]
+                  RenderBlock {DIV} at (2,2) size 61x12
+            RenderText {#text} at (80,0) size 232x19
+              text run at (80,0) width 232: &quot; has value style but should ignore it.&quot;
</ins><span class="cx">           RenderListItem {LI} at (43,69) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 251x19
-              text run at (0,0) width 251: &quot;has both styles but should ignore them.&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16 [bgcolor=#808080] [border: (2px solid #222222)]
+                  RenderBlock {DIV} at (2,2) size 61x12 [bgcolor=#008000] [border: (2px solid #77CC77)]
+            RenderText {#text} at (80,0) size 255x19
+              text run at (80,0) width 255: &quot; has both styles but should ignore them.&quot;
</ins><span class="cx">         RenderBlock {UL} at (3,92) size 778x91
</span><span class="cx">           RenderBlock (anonymous) at (40,0) size 738x20
</span><span class="cx">             RenderText {#text} at (0,0) size 470x19
</span><span class="cx">               text run at (0,0) width 470: &quot;-webkit-appearance: none, thus custom styled elements should be shown.&quot;
</span><span class="cx">           RenderListItem {LI} at (43,23) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 272x19
-              text run at (0,0) width 272: &quot;has bar style, should have solid value part.&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16 [bgcolor=#008000] [border: (2px solid #77CC77)]
+            RenderText {#text} at (80,0) size 276x19
+              text run at (80,0) width 276: &quot; has bar style, should have solid value part.&quot;
</ins><span class="cx">           RenderListItem {LI} at (43,46) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 257x19
-              text run at (0,0) width 257: &quot;has value style, should be solid bar part.&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16 [bgcolor=#808080] [border: (2px solid #222222)]
+                  RenderBlock {DIV} at (2,2) size 61x12
+            RenderText {#text} at (80,0) size 261x19
+              text run at (80,0) width 261: &quot; has value style, should be solid bar part.&quot;
</ins><span class="cx">           RenderListItem {LI} at (43,69) size 732x21
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 236x19
-              text run at (0,0) width 236: &quot;should have solid bar and value part.&quot;
-      RenderBlock {H2} at (3,324) size 778x21
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16 [bgcolor=#808080] [border: (2px solid #222222)]
+                  RenderBlock {DIV} at (2,2) size 61x12 [bgcolor=#008000] [border: (2px solid #77CC77)]
+            RenderText {#text} at (80,0) size 240x19
+              text run at (80,0) width 240: &quot; should have solid bar and value part.&quot;
+      RenderBlock {H2} at (3,399) size 778x20
</ins><span class="cx">         RenderText {#text} at (0,0) size 157x19
</span><span class="cx">           text run at (0,0) width 157: &quot;Providing appearances&quot;
</span><del>-      RenderBlock {DIV} at (0,347) size 784x44 [bgcolor=#EEEEEE]
</del><ins>+      RenderBlock {DIV} at (0,422) size 784x44 [bgcolor=#EEEEEE]
</ins><span class="cx">         RenderBlock {UL} at (3,0) size 778x44
</span><span class="cx">           RenderListItem {LI} at (43,0) size 732x20
</span><del>-            RenderInline {METER} at (0,0) size 0x0
-            RenderText {#text} at (0,0) size 377x19
-              text run at (0,0) width 377: &quot;has \&quot;none\&quot; appearance, should be styled with default style.&quot;
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
+            RenderText {#text} at (80,0) size 381x19
+              text run at (80,0) width 381: &quot; has \&quot;none\&quot; appearance, should be styled with default style.&quot;
</ins><span class="cx">           RenderListItem {LI} at (43,23) size 732x21
</span><del>-            RenderBlock {METER} at (0,15) size 0x0
-            RenderText {#text} at (0,0) size 280x19
-              text run at (0,0) width 280: &quot; has \&quot;meter\&quot; appearance, should be themed.&quot;
-      RenderBlock {H2} at (3,394) size 778x21
</del><ins>+            RenderBlock {METER} at (0,2) size 80x17
+              RenderMeter {DIV} at (0,0) size 80x16
+                RenderBlock {DIV} at (0,0) size 80x16
+                  RenderBlock {DIV} at (0,0) size 64x16
+            RenderText {#text} at (80,0) size 280x19
+              text run at (80,0) width 280: &quot; has \&quot;meter\&quot; appearance, should be themed.&quot;
+      RenderBlock {H2} at (3,468) size 778x21
</ins><span class="cx">         RenderText {#text} at (0,0) size 162x19
</span><span class="cx">           text run at (0,0) width 162: &quot;Providing bar paddings&quot;
</span><del>-      RenderBlock {DIV} at (0,417) size 784x21 [bgcolor=#EEEEEE]
-        RenderInline {METER} at (0,0) size 0x0
-        RenderText {#text} at (0,0) size 162x19
-          text run at (0,0) width 162: &quot;has \&quot;padding\&quot; on the bar.&quot;
</del><ins>+      RenderBlock {DIV} at (0,491) size 784x21 [bgcolor=#EEEEEE]
+        RenderBlock {METER} at (0,2) size 80x17
+          RenderMeter {DIV} at (0,0) size 80x16
+            RenderBlock {DIV} at (0,0) size 80x16
+              RenderBlock {DIV} at (5,5) size 35x6
+        RenderText {#text} at (80,0) size 166x19
+          text run at (80,0) width 166: &quot; has \&quot;padding\&quot; on the bar.&quot;
</ins></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsformsformcontrolinfrastructureformexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/form-control-infrastructure/form-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/form-control-infrastructure/form-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/form-control-infrastructure/form-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -17,9 +17,7 @@
</span><span class="cx"> PASS label-with-control.form 
</span><span class="cx"> PASS label-for.form 
</span><span class="cx"> FAIL label-with-progress.form assert_equals: Sanity check: label.control.form expected (object) null but got (undefined) undefined
</span><del>-FAIL label-with-meter.form assert_equals: label.form expected null but got Element node &lt;form id=&quot;form&quot;&gt;
-&lt;p&gt;&lt;button id=&quot;button&quot;&gt;button&lt;/button&gt;
-&lt;...
</del><ins>+FAIL label-with-meter.form assert_equals: Sanity check: label.control.form expected (object) null but got (undefined) undefined
</ins><span class="cx"> FAIL label-for-control-form-in-form.form assert_equals: label.form expected Element node &lt;form id=&quot;form2&quot;&gt;&lt;/form&gt; but got Element node &lt;form id=&quot;form&quot;&gt;
</span><span class="cx"> &lt;p&gt;&lt;button id=&quot;button&quot;&gt;button&lt;/button&gt;
</span><span class="cx"> &lt;...
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsformsthelabelelementlabelableelementsexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-label-element/labelable-elements-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -15,8 +15,8 @@
</span><span class="cx"> PASS Check if the input element in radio state can access 'labels' 
</span><span class="cx"> PASS Check if the keygen element is a labelable element 
</span><span class="cx"> PASS Check if the keygen element can access 'labels' 
</span><del>-FAIL Check if the meter element is a labelable element null is not an object (evaluating 'document.getElementById(&quot;lbl8&quot;).control.id')
-FAIL Check if the meter element can access 'labels' undefined is not an object (evaluating 'elem.labels.length')
</del><ins>+PASS Check if the meter element is a labelable element 
+PASS Check if the meter element can access 'labels' 
</ins><span class="cx"> PASS Check if the fieldset element is not a labelable element 
</span><span class="cx"> PASS Check if the fieldset element can access 'labels' 
</span><span class="cx"> PASS Check if the label element is not a labelable element 
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsformsthemeterelementmeterexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-meter-element/meter-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-meter-element/meter-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/forms/the-meter-element/meter-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,54 +1,54 @@
</span><span class="cx"> Meter Element
</span><span class="cx"> 
</span><span class="cx"> 
</span><del>-FAIL Default values assert_equals: min value expected (number) 0 but got (undefined) undefined
</del><ins>+PASS Default values 
</ins><span class="cx"> PASS Setting values to min, max, low, high and optimum 
</span><del>-FAIL Invalid floating-point number values assert_equals: meter value expected (number) 0 but got (string) &quot;foobar&quot;
-FAIL max &lt; min assert_equals: min value expected (number) 0 but got (undefined) undefined
-FAIL value &lt; min assert_equals: meter value expected 10 but got 0
-FAIL value &gt; max assert_equals: meter value expected 20 but got 30
-FAIL low &lt; min assert_equals: low value expected 10 but got 5
-FAIL low &gt; max assert_equals: low value expected 20 but got 25
-FAIL high &lt; low assert_equals: high value expected 12 but got 10
-FAIL high &gt; max assert_equals: high value expected 20 but got 22
-FAIL optimum &lt; min assert_equals: low value expected (number) 10 but got (undefined) undefined
-FAIL optimum &gt; max assert_equals: low value expected (number) 10 but got (undefined) undefined
-FAIL value must be 0 when a string is given assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL default value of min is 0 assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If min is not specified and value is smaller than the default value of min (i.e. 0), the actual value must be 0 assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL default value of max is 1.0 assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL If max is not specified and value is larger than the default value of max (i.e. 1.0), the actual value must be 1.0 assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL If a value smaller than 1.0 is given to min and max is not specified, max must be the same value as its default value (i.e. 1.0) assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL If a value smaller than 1.0 is given to min, max is not specified, and value is larger than the default value of max (i.e. 1.0), the actual value must be 1.0 assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL If a value larger than or equal to 1.0 is given to min and max is not specified, max must be the same value as min assert_equals: expected (number) 12.1 but got (undefined) undefined
-FAIL If a value larger than or equal to 1.0 is given to min and max is not specified, the actual value must be the same value as min assert_equals: expected (number) 12.1 but got (undefined) undefined
-FAIL If a value smaller than 0 is given to max and min is not specified, min must be be the same value as its default value (i.e. 0) assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If a value smaller than 0 is given to max and min is not specified, max must be be the same value as the default value of min (i.e. 0) assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If a value smaller than 0 is given to max and min is not specified, the actual value must be be the same value as the default value of min (i.e. 0) assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If a value larger than or equal to 0 is given to max and min is not specified, max must be the same value as the default value of min (i.e. 0) assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If a value larger than or equal to 0 is given to max and min is not specified, min must be the same value as its default value (i.e. 0) assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If a value larger than or equal to 0 is given to max and min is not specified, the actual value must be the same value as the default value of min (i.e. 0) assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL min must be 0 when a string is given assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL If a string is given to min and value is smaller than the default value of min (i.e. 0), the actual value must be 0 assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL max must be 1.0 when a string is given assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL If a string is given to max and value is larger than the default value of min (i.e. 1.0), the actual value must be 1.0 assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL giving a string to low must not affect the actual value assert_equals: expected (number) -10.3 but got (undefined) undefined
-FAIL high must equal max when a string is given to high assert_equals: expected (number) 1.5 but got (undefined) undefined
-FAIL giving a string to high must not affect the actual value assert_equals: expected (number) 1.5 but got (undefined) undefined
-FAIL value must not be smaller than min assert_equals: expected (number) 4.5 but got (undefined) undefined
-FAIL value must not be larger than max assert_equals: expected (number) 52.02 but got (undefined) undefined
-FAIL default low and high values equal min and max, respectively assert_array_equals: property 0, expected -12.3 but got undefined
-FAIL default low and high values equal 0 and 1.0 respectively, if both low and high are not specified assert_array_equals: property 0, expected 0 but got undefined
-FAIL low must not be smaller than min assert_array_equals: property 0, expected 12.3 but got undefined
-FAIL low must not be larger than max assert_array_equals: property 0, expected -34.5 but got undefined
-FAIL high must not be smaller than min assert_array_equals: property 0, expected 12.3 but got undefined
-FAIL high must not be larger than max assert_array_equals: property 0, expected -34.5 but got undefined
-FAIL If min is not specified, low must not be smaller than default value of min (i.e. 0) assert_array_equals: property 0, expected 0 but got undefined
-FAIL If a value smaller than low is given to high, it must be set to the same value as low assert_array_equals: property 0, expected -10.3 but got undefined
-FAIL If max is not specified, high must not be larger than default value of max (i.e. 1.0) assert_array_equals: property 0, expected 1 but got undefined
-FAIL optimum smaller than min assert_equals: expected (number) 0 but got (undefined) undefined
-FAIL optimum (smaller than min) must not affect min and the actual value assert_array_equals: property 0, expected 0 but got undefined
-FAIL optimum smaller than max assert_equals: expected (number) 1 but got (undefined) undefined
-FAIL optimum (larger than max) must not affect max and the actual value assert_array_equals: property 0, expected 1 but got undefined
-FAIL default optimum value is the midpoint between min and max assert_equals: expected (number) NaN but got (undefined) undefined
</del><ins>+FAIL Invalid floating-point number values The operation is not supported.
+PASS max &lt; min 
+PASS value &lt; min 
+PASS value &gt; max 
+PASS low &lt; min 
+PASS low &gt; max 
+PASS high &lt; low 
+PASS high &gt; max 
+PASS optimum &lt; min 
+PASS optimum &gt; max 
+PASS value must be 0 when a string is given 
+PASS default value of min is 0 
+PASS If min is not specified and value is smaller than the default value of min (i.e. 0), the actual value must be 0 
+PASS default value of max is 1.0 
+PASS If max is not specified and value is larger than the default value of max (i.e. 1.0), the actual value must be 1.0 
+PASS If a value smaller than 1.0 is given to min and max is not specified, max must be the same value as its default value (i.e. 1.0) 
+PASS If a value smaller than 1.0 is given to min, max is not specified, and value is larger than the default value of max (i.e. 1.0), the actual value must be 1.0 
+PASS If a value larger than or equal to 1.0 is given to min and max is not specified, max must be the same value as min 
+PASS If a value larger than or equal to 1.0 is given to min and max is not specified, the actual value must be the same value as min 
+PASS If a value smaller than 0 is given to max and min is not specified, min must be be the same value as its default value (i.e. 0) 
+PASS If a value smaller than 0 is given to max and min is not specified, max must be be the same value as the default value of min (i.e. 0) 
+PASS If a value smaller than 0 is given to max and min is not specified, the actual value must be be the same value as the default value of min (i.e. 0) 
+PASS If a value larger than or equal to 0 is given to max and min is not specified, max must be the same value as the default value of min (i.e. 0) 
+PASS If a value larger than or equal to 0 is given to max and min is not specified, min must be the same value as its default value (i.e. 0) 
+PASS If a value larger than or equal to 0 is given to max and min is not specified, the actual value must be the same value as the default value of min (i.e. 0) 
+PASS min must be 0 when a string is given 
+PASS If a string is given to min and value is smaller than the default value of min (i.e. 0), the actual value must be 0 
+PASS max must be 1.0 when a string is given 
+PASS If a string is given to max and value is larger than the default value of min (i.e. 1.0), the actual value must be 1.0 
+PASS giving a string to low must not affect the actual value 
+PASS high must equal max when a string is given to high 
+PASS giving a string to high must not affect the actual value 
+PASS value must not be smaller than min 
+PASS value must not be larger than max 
+PASS default low and high values equal min and max, respectively 
+PASS default low and high values equal 0 and 1.0 respectively, if both low and high are not specified 
+PASS low must not be smaller than min 
+PASS low must not be larger than max 
+PASS high must not be smaller than min 
+PASS high must not be larger than max 
+PASS If min is not specified, low must not be smaller than default value of min (i.e. 0) 
+PASS If a value smaller than low is given to high, it must be set to the same value as low 
+PASS If max is not specified, high must not be larger than default value of max (i.e. 1.0) 
+PASS optimum smaller than min 
+PASS optimum (smaller than min) must not affect min and the actual value 
+PASS optimum smaller than max 
+PASS optimum (larger than max) must not affect max and the actual value 
+PASS default optimum value is the midpoint between min and max 
</ins><span class="cx"> 
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorimportedw3cwebplatformtestshtmlsemanticsinterfacesexpectedtxt"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator/imported/w3c/web-platform-tests/html/semantics/interfaces-expected.txt        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -170,8 +170,8 @@
</span><span class="cx"> FAIL Interfaces for MENUITEM assert_equals: Element MENUITEM should have HTMLMenuItemElement as its primary interface. expected &quot;[object HTMLMenuItemElement]&quot; but got &quot;[object HTMLUnknownElement]&quot;
</span><span class="cx"> PASS Interfaces for meta 
</span><span class="cx"> PASS Interfaces for META 
</span><del>-FAIL Interfaces for meter assert_equals: Element meter should have HTMLMeterElement as its primary interface. expected &quot;[object HTMLMeterElement]&quot; but got &quot;[object HTMLUnknownElement]&quot;
-FAIL Interfaces for METER assert_equals: Element METER should have HTMLMeterElement as its primary interface. expected &quot;[object HTMLMeterElement]&quot; but got &quot;[object HTMLUnknownElement]&quot;
</del><ins>+PASS Interfaces for meter 
+PASS Interfaces for METER 
</ins><span class="cx"> PASS Interfaces for mod 
</span><span class="cx"> PASS Interfaces for MOD 
</span><span class="cx"> PASS Interfaces for multicol 
</span></span></pre></div>
<a id="trunkLayoutTestsplatformiossimulatorwk1TestExpectations"></a>
<div class="modfile"><h4>Modified: trunk/LayoutTests/platform/ios-simulator-wk1/TestExpectations (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/LayoutTests/platform/ios-simulator-wk1/TestExpectations        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/LayoutTests/platform/ios-simulator-wk1/TestExpectations        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -845,7 +845,6 @@
</span><span class="cx"> fast/hidpi/image-srcset-invalid-descriptor.html [ Failure ]
</span><span class="cx"> fast/html/details-remove-summary-1-and-click.html [ Failure ]
</span><span class="cx"> fast/html/details-remove-summary-4-and-click.html [ Failure ]
</span><del>-fast/html/meter-user-modify.html [ Failure ]
</del><span class="cx"> fast/html/set-text-direction.html [ Failure ]
</span><span class="cx"> fast/inline/continuation-outlines-with-layers.html [ Failure ]
</span><span class="cx"> fast/layers/scroll-rect-to-visible.html [ Failure ]
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/ChangeLog (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/ChangeLog        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/JavaScriptCore/ChangeLog        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,3 +1,15 @@
</span><ins>+2016-09-07  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Enable the &lt;meter&gt; element on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=161714
+        rdar://problem/8978410
+
+        Reviewed by Tim Horton.
+
+        Define ENABLE_METER_ELEMENT unconditionally now.
+
+        * Configurations/FeatureDefines.xcconfig:
+
</ins><span class="cx"> 2016-09-07  Joseph Pecoraro  &lt;pecoraro@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Modernize Debugger to use nullptr
</span></span></pre></div>
<a id="trunkSourceJavaScriptCoreConfigurationsFeatureDefinesxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/JavaScriptCore/Configurations/FeatureDefines.xcconfig        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx"> 
</span><span class="cx"> ENABLE_MEDIA_STATISTICS = ;
</span><span class="cx"> ENABLE_MEDIA_STREAM = ENABLE_MEDIA_STREAM;
</span><del>-ENABLE_METER_ELEMENT[sdk=macosx*] = ENABLE_METER_ELEMENT;
</del><ins>+ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
</ins><span class="cx"> ENABLE_MHTML = ;
</span><span class="cx"> ENABLE_MOUSE_CURSOR_SCALE[sdk=macosx*] = ENABLE_MOUSE_CURSOR_SCALE;
</span><span class="cx"> ENABLE_NAVIGATOR_CONTENT_UTILS = ;
</span></span></pre></div>
<a id="trunkSourceWebCoreChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/ChangeLog (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/ChangeLog        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/WebCore/ChangeLog        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,3 +1,20 @@
</span><ins>+2016-09-07  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Enable the &lt;meter&gt; element on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=161714
+        rdar://problem/8978410
+
+        Reviewed by Tim Horton.
+
+        Define ENABLE_METER_ELEMENT unconditionally now.
+        
+        Rendering falls back to html.css rendering, which makes &lt;meter&gt; looks similar between
+        macOS and iOS.
+
+        Tested by enabling existing tests.
+
+        * Configurations/FeatureDefines.xcconfig:
+
</ins><span class="cx"> 2016-09-07  Eric Carlson  &lt;eric.carlson@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [MediaStream] applyConstraints pt. 2 - advanced constraints
</span></span></pre></div>
<a id="trunkSourceWebCoreConfigurationsFeatureDefinesxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/WebCore/Configurations/FeatureDefines.xcconfig        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx"> 
</span><span class="cx"> ENABLE_MEDIA_STATISTICS = ;
</span><span class="cx"> ENABLE_MEDIA_STREAM = ENABLE_MEDIA_STREAM;
</span><del>-ENABLE_METER_ELEMENT[sdk=macosx*] = ENABLE_METER_ELEMENT;
</del><ins>+ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
</ins><span class="cx"> ENABLE_MHTML = ;
</span><span class="cx"> ENABLE_MOUSE_CURSOR_SCALE[sdk=macosx*] = ENABLE_MOUSE_CURSOR_SCALE;
</span><span class="cx"> ENABLE_NAVIGATOR_CONTENT_UTILS = ;
</span></span></pre></div>
<a id="trunkSourceWebKitmacChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit/mac/ChangeLog (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit/mac/ChangeLog        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/WebKit/mac/ChangeLog        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,3 +1,15 @@
</span><ins>+2016-09-07  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Enable the &lt;meter&gt; element on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=161714
+        rdar://problem/8978410
+
+        Reviewed by Tim Horton.
+
+        Define ENABLE_METER_ELEMENT unconditionally now.
+
+        * Configurations/FeatureDefines.xcconfig:
+
</ins><span class="cx"> 2016-09-07  Mark Lam  &lt;mark.lam@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Add CatchScope and force all exception checks to be via ThrowScope or CatchScope.
</span></span></pre></div>
<a id="trunkSourceWebKitmacConfigurationsFeatureDefinesxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/WebKit/mac/Configurations/FeatureDefines.xcconfig        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx"> 
</span><span class="cx"> ENABLE_MEDIA_STATISTICS = ;
</span><span class="cx"> ENABLE_MEDIA_STREAM = ENABLE_MEDIA_STREAM;
</span><del>-ENABLE_METER_ELEMENT[sdk=macosx*] = ENABLE_METER_ELEMENT;
</del><ins>+ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
</ins><span class="cx"> ENABLE_MHTML = ;
</span><span class="cx"> ENABLE_MOUSE_CURSOR_SCALE[sdk=macosx*] = ENABLE_MOUSE_CURSOR_SCALE;
</span><span class="cx"> ENABLE_NAVIGATOR_CONTENT_UTILS = ;
</span></span></pre></div>
<a id="trunkSourceWebKit2ChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/ChangeLog (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/ChangeLog        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/WebKit2/ChangeLog        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,3 +1,15 @@
</span><ins>+2016-09-07  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Enable the &lt;meter&gt; element on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=161714
+        rdar://problem/8978410
+
+        Reviewed by Tim Horton.
+
+        Define ENABLE_METER_ELEMENT unconditionally now.
+
+        * Configurations/FeatureDefines.xcconfig:
+
</ins><span class="cx"> 2016-09-07  Dan Bernstein  &lt;mitz@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         [Mac] .tbd files for the shims end up installed when building with GENERATE_TEXT_BASED_STUBS=YES
</span></span></pre></div>
<a id="trunkSourceWebKit2ConfigurationsFeatureDefinesxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Source/WebKit2/Configurations/FeatureDefines.xcconfig        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx"> 
</span><span class="cx"> ENABLE_MEDIA_STATISTICS = ;
</span><span class="cx"> ENABLE_MEDIA_STREAM = ENABLE_MEDIA_STREAM;
</span><del>-ENABLE_METER_ELEMENT[sdk=macosx*] = ENABLE_METER_ELEMENT;
</del><ins>+ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
</ins><span class="cx"> ENABLE_MHTML = ;
</span><span class="cx"> ENABLE_MOUSE_CURSOR_SCALE[sdk=macosx*] = ENABLE_MOUSE_CURSOR_SCALE;
</span><span class="cx"> ENABLE_NAVIGATOR_CONTENT_UTILS = ;
</span></span></pre></div>
<a id="trunkToolsChangeLog"></a>
<div class="modfile"><h4>Modified: trunk/Tools/ChangeLog (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/ChangeLog        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Tools/ChangeLog        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -1,3 +1,15 @@
</span><ins>+2016-09-07  Simon Fraser  &lt;simon.fraser@apple.com&gt;
+
+        Enable the &lt;meter&gt; element on iOS
+        https://bugs.webkit.org/show_bug.cgi?id=161714
+        rdar://problem/8978410
+
+        Reviewed by Tim Horton.
+
+        Define ENABLE_METER_ELEMENT unconditionally now.
+
+        * TestWebKitAPI/Configurations/FeatureDefines.xcconfig:
+
</ins><span class="cx"> 2016-09-07  Jonathan Bedard  &lt;jbedard@apple.com&gt;
</span><span class="cx"> 
</span><span class="cx">         Run spindumps on timeout on iOS 9 Simulator Release WK2 (Tests)
</span></span></pre></div>
<a id="trunkToolsTestWebKitAPIConfigurationsFeatureDefinesxcconfig"></a>
<div class="modfile"><h4>Modified: trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig (205578 => 205579)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig        2016-09-08 01:04:48 UTC (rev 205578)
+++ trunk/Tools/TestWebKitAPI/Configurations/FeatureDefines.xcconfig        2016-09-08 01:26:08 UTC (rev 205579)
</span><span class="lines">@@ -137,7 +137,7 @@
</span><span class="cx"> 
</span><span class="cx"> ENABLE_MEDIA_STATISTICS = ;
</span><span class="cx"> ENABLE_MEDIA_STREAM = ENABLE_MEDIA_STREAM;
</span><del>-ENABLE_METER_ELEMENT[sdk=macosx*] = ENABLE_METER_ELEMENT;
</del><ins>+ENABLE_METER_ELEMENT = ENABLE_METER_ELEMENT;
</ins><span class="cx"> ENABLE_MHTML = ;
</span><span class="cx"> ENABLE_MOUSE_CURSOR_SCALE[sdk=macosx*] = ENABLE_MOUSE_CURSOR_SCALE;
</span><span class="cx"> ENABLE_NAVIGATOR_CONTENT_UTILS = ;
</span></span></pre>
</div>
</div>

</body>
</html>