Skip to content

Commit

Permalink
Case sensitivity for getEntries (#58)
Browse files Browse the repository at this point in the history
Make getEntries* to be case sensitive
  • Loading branch information
plehegar authored and igrigorik committed Sep 28, 2016
1 parent 579c0cf commit 4f93e28
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 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_ in a [case-sensitive] manner, 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_ in a [case-sensitive] manner, and its value does not
match _value_ in a [case-sensitive] manner, go to next <a>entryObject</a>.
</li>
</ol>
</li>
Expand Down Expand Up @@ -490,6 +490,7 @@ <h2>The <dfn>PerformanceObserver</dfn> interface</h2>
[queue a task]: https://html.spec.whatwg.org/multipage/webappapis.html#queue-a-task
[task queue]: https://html.spec.whatwg.org/multipage/webappapis.html#task-queue
[report the exception]: https://html.spec.whatwg.org/multipage/webappapis.html#report-the-exception
[case-sensitive]: https://html.spec.whatwg.org/multipage/infrastructure.html#case-sensitive
[conforming IDL fragments]: https://heycam.github.io/webidl/#dfn-conforming-idl-fragment
[es-global]: https://heycam.github.io/webidl/#es-environment
[dictionary member]: https://heycam.github.io/webidl/#dfn-dictionary-member
Expand Down

0 comments on commit 4f93e28

Please sign in to comment.