Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[e] (0) correct example
Fixing http://www.w3.org/Bugs/Public/show_bug.cgi?id=12257

git-svn-id: http://svn.whatwg.org/webapps@6095 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 6, 2011
1 parent 5e47d9f commit 7733ce6
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions complete.html
Expand Up @@ -16030,12 +16030,12 @@ <h4 id=the-script-element><span class=secno>4.3.1 </span>The <dfn id=script><cod
form.elements.result.value = price;
}
&lt;/script&gt;
&lt;form name="pricecalc" onsubmit="return false"&gt;
&lt;form name="pricecalc" onsubmit="return false" onchange="calculate(this)"&gt;
&lt;fieldset&gt;
&lt;legend&gt;Work out the price of your car&lt;/legend&gt;
&lt;p&gt;Base cost: &pound;52000.&lt;/p&gt;
&lt;p&gt;Select additional options:&lt;/p&gt;
&lt;ul onchange="calculate(form)"&gt;
&lt;ul&gt;
&lt;li&gt;&lt;label&gt;&lt;input type=checkbox name=brakes&gt; Ceramic brakes (&pound;1000)&lt;/label&gt;&lt;/li&gt;
&lt;li&gt;&lt;label&gt;&lt;input type=checkbox name=radio&gt; Satellite radio (&pound;2500)&lt;/label&gt;&lt;/li&gt;
&lt;li&gt;&lt;label&gt;&lt;input type=checkbox name=turbo&gt; Turbo charger (&pound;5000)&lt;/label&gt;&lt;/li&gt;
Expand Down
4 changes: 2 additions & 2 deletions index
Expand Up @@ -16055,12 +16055,12 @@ o............A....e
form.elements.result.value = price;
}
&lt;/script&gt;
&lt;form name="pricecalc" onsubmit="return false"&gt;
&lt;form name="pricecalc" onsubmit="return false" onchange="calculate(this)"&gt;
&lt;fieldset&gt;
&lt;legend&gt;Work out the price of your car&lt;/legend&gt;
&lt;p&gt;Base cost: &pound;52000.&lt;/p&gt;
&lt;p&gt;Select additional options:&lt;/p&gt;
&lt;ul onchange="calculate(form)"&gt;
&lt;ul&gt;
&lt;li&gt;&lt;label&gt;&lt;input type=checkbox name=brakes&gt; Ceramic brakes (&pound;1000)&lt;/label&gt;&lt;/li&gt;
&lt;li&gt;&lt;label&gt;&lt;input type=checkbox name=radio&gt; Satellite radio (&pound;2500)&lt;/label&gt;&lt;/li&gt;
&lt;li&gt;&lt;label&gt;&lt;input type=checkbox name=turbo&gt; Turbo charger (&pound;5000)&lt;/label&gt;&lt;/li&gt;
Expand Down
4 changes: 2 additions & 2 deletions source
Expand Up @@ -17205,12 +17205,12 @@ o............A....e
form.elements.result.value = price;
}
&lt;/script>
&lt;form name="pricecalc" onsubmit="return false">
&lt;form name="pricecalc" onsubmit="return false" onchange="calculate(this)">
&lt;fieldset>
&lt;legend>Work out the price of your car&lt;/legend>
&lt;p>Base cost: &pound;52000.&lt;/p>
&lt;p>Select additional options:&lt;/p>
&lt;ul onchange="calculate(form)">
&lt;ul>
&lt;li>&lt;label>&lt;input type=checkbox name=brakes> Ceramic brakes (&pound;1000)&lt;/label>&lt;/li>
&lt;li>&lt;label>&lt;input type=checkbox name=radio> Satellite radio (&pound;2500)&lt;/label>&lt;/li>
&lt;li>&lt;label>&lt;input type=checkbox name=turbo> Turbo charger (&pound;5000)&lt;/label>&lt;/li>
Expand Down

0 comments on commit 7733ce6

Please sign in to comment.