Skip to content

Commit

Permalink
[giow] (3) controls with box-sizing: border-box in standards mode
Browse files Browse the repository at this point in the history
Fixing https://www.w3.org/Bugs/Public/show_bug.cgi?id=18801
Affected topics: Rendering

git-svn-id: http://svn.whatwg.org/webapps@7526 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed Nov 22, 2012
1 parent 9d26fcd commit 3350100
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
6 changes: 5 additions & 1 deletion complete.html
Expand Up @@ -99072,7 +99072,11 @@ <h4 id=form-controls><span class=secno>14.3.10 </span>Form controls</h4>
}

textarea { white-space: pre-wrap; }
</pre>

input[type="radio"], input[type="checkbox"], input[type="reset"], input[type="button"],
input[type="submit"], select, button {
box-sizing: border-box;
}</pre>

<p>In <a href=#quirks-mode>quirks mode</a>, the following rules are also
expected to apply:</p>
Expand Down
6 changes: 5 additions & 1 deletion index
Expand Up @@ -99072,7 +99072,11 @@ input, select, option, optgroup, button, textarea, keygen {
}

textarea { white-space: pre-wrap; }
</pre>

input[type="radio"], input[type="checkbox"], input[type="reset"], input[type="button"],
input[type="submit"], select, button {
box-sizing: border-box;
}</pre>

<p>In <a href=#quirks-mode>quirks mode</a>, the following rules are also
expected to apply:</p>
Expand Down
6 changes: 5 additions & 1 deletion source
Expand Up @@ -114848,7 +114848,11 @@ input, select, option, optgroup, button, textarea, keygen {
}

textarea { white-space: pre-wrap; }
</pre>

input[type="radio"], input[type="checkbox"], input[type="reset"], input[type="button"],
input[type="submit"], select, button {
box-sizing: border-box;
}</pre>

<p>In <span>quirks mode</span>, the following rules are also
expected to apply:</p>
Expand Down

0 comments on commit 3350100

Please sign in to comment.