Skip to content

Commit

Permalink
Make textfield/searchfield and menulist/menulist-button mutually excl…
Browse files Browse the repository at this point in the history
…usive for clarity
  • Loading branch information
zcorpan committed Sep 10, 2021
1 parent 893e220 commit 952cdb6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -117405,9 +117405,10 @@ input[type=image i][align=bottom i], object[align=bottom i] {
<var>computedAppearance</var>:</p>

<ol>
<li><p>If <var>element</var> is an <code>input</code> element and <var>element</var>'s <code
<li><p>If <var>element</var> is an <code>input</code> element, <var>element</var>'s <code
data-x="attr-input-type">type</code> attribute's state is <span
data-x="attr-input-type-search">Search</span>, then return true.</p></li>
data-x="attr-input-type-search">Search</span>, and <var>computedAppearance</var> is not
'textfield', then return true.</p></li>

<li><p>Return false.</p></li>
</ol>
Expand Down Expand Up @@ -117459,8 +117460,9 @@ input[type=image i][align=bottom i], object[align=bottom i] {
<var>computedAppearance</var>:</p>

<ol>
<li><p>If <var>element</var> is a <code>select</code> element and <var>element</var> is a
<span>drop-down box</span>, then return true.</p></li>
<li><p>If <var>element</var> is a <code>select</code> element, <var>element</var> is a
<span>drop-down box</span>, and <var>computedAppearance</var> is not 'menulist-button', then
return true.</p></li>

<li><p>Return false.</p></li>
</ol>
Expand Down

0 comments on commit 952cdb6

Please sign in to comment.