Skip to content

Commit

Permalink
getEntries case sensitivity. #57
Browse files Browse the repository at this point in the history
  • Loading branch information
plehegar committed Sep 7, 2016
1 parent 579c0cf commit 33578f2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -355,11 +355,11 @@ <h2>Extensions to the <dfn>Performance</dfn> interface</h2>
properties</a>:
<ol>
<li>If the <a>entryObject</a> does not contain an attribute
whose name matches _name_, go to next <a>entryObject</a>.
whose name matches _name_ case-insensitively, go to next <a>entryObject</a>.
</li>
<li>Otherwise, if the <a>entryObject</a> contains an
attribute whose name matches _name_, and its value does not
match _value_, go to next <a>entryObject</a>.
attribute whose name matches _name_ case-insensitively, and its value does not
match _value_ case-sensitively, go to next <a>entryObject</a>.
</li>
</ol>
</li>
Expand Down

0 comments on commit 33578f2

Please sign in to comment.