Skip to content

Commit 28f2eb1

Browse files
fix: update get element tag name to return lowercase tag name (w3c#1962)
SHA: 905860d Reason: push, by pull[bot] Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 36f5a1f commit 28f2eb1

1 file changed

Lines changed: 13 additions & 11 deletions

File tree

index.html

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<!DOCTYPE html><html lang="en-us" data-issue-url="https://github.com/w3c/webdriver/" data-issue-param-milestone="Level 1"><head>
22
<meta charset="utf-8">
3-
<meta name="generator" content="ReSpec 37.0.0">
3+
<meta name="generator" content="ReSpec 37.1.0">
44
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
55
<style>
66
span.example-title{text-transform:none}
@@ -121,7 +121,7 @@
121121
ol.tof,ul.tof{list-style:none outside none}
122122
.caption{margin-top:.5em;font-style:italic}
123123
#issue-summary>ul{column-count:2}
124-
#issue-summary li{list-style:none;display:inline-block}
124+
#issue-summary li{list-style:none}
125125
details.respec-tests-details{margin-left:1em;display:inline-block;vertical-align:top}
126126
details.respec-tests-details>*{padding-right:2em}
127127
details.respec-tests-details[open]{z-index:999999;position:absolute;border:thin solid #cad3e2;border-radius:.3em;background-color:#fff;padding-bottom:.5em}
@@ -190,7 +190,7 @@
190190
.mdn .samsunginternet_android::before{background-image:url(https://www.w3.org/assets/logos/browser-logos/samsung-internet/samsung-internet.svg)}
191191
.mdn .webview_android::before{background-image:url(https://www.w3.org/assets/logos/browser-logos/android-webview/android-webview.png)}
192192
</style>
193-
<meta name="revision" content="463f7edcf571975d9a05e86c8ef5372e28eda30a">
193+
<meta name="revision" content="905860d2e4734df9c390465cc5ef1150cf2bc61b">
194194
<meta name="description" content="WebDriver is a remote control interface
195195
that enables introspection and control of user agents.
196196
It provides a platform- and language-neutral wire protocol
@@ -323,15 +323,15 @@
323323
],
324324
"profile": "web-platform"
325325
},
326-
"gitRevision": "463f7edcf571975d9a05e86c8ef5372e28eda30a",
327-
"publishISODate": "2026-05-11T00:00:00.000Z",
328-
"generatedSubtitle": "W3C Editor's Draft 11 May 2026"
326+
"gitRevision": "905860d2e4734df9c390465cc5ef1150cf2bc61b",
327+
"publishISODate": "2026-05-26T00:00:00.000Z",
328+
"generatedSubtitle": "W3C Editor's Draft 26 May 2026"
329329
}</script>
330330
<link rel="stylesheet" href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED"></head><body data-cite="WEBIDL CSSOM-VIEW GEOMETRY-1 fileapi HTML INFRA URL WEBIDL DOM FETCH" class="h-entry"><div class="head">
331331
<p class="logos"><a class="logo" href="https://www.w3.org/"><img crossorigin="" alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72">
332332
</a></p>
333333
<h1 id="title" class="title">WebDriver</h1>
334-
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">W3C Editor's Draft</a> <time class="dt-published" datetime="2026-05-11">11 May 2026</time></p>
334+
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">W3C Editor's Draft</a> <time class="dt-published" datetime="2026-05-26">26 May 2026</time></p>
335335
<details open="">
336336
<summary>More details about this document</summary>
337337
<dl>
@@ -6647,7 +6647,7 @@ <h1 id="title" class="title">WebDriver</h1>
66476647
with <var>URL variables</var>["<code>element id</code>"].
66486648

66496649
</p></li><li><p>Let <var>qualified name</var> be the result of getting
6650-
<var>element</var>'s <a data-link-type="attribute" href="https://dom.spec.whatwg.org/#dom-element-tagname" id="ref-for-index-term-tagname-attribute-for-element-1"><code>tagName</code></a> IDL attribute.
6650+
<var>element</var>'s <a data-link-type="attribute" href="https://dom.spec.whatwg.org/#dom-element-tagname" id="ref-for-index-term-tagname-attribute-for-element-1"><code>tagName</code></a> IDL attribute in <a data-link-type="dfn" href="https://infra.spec.whatwg.org/#ascii-lowercase" id="ref-for-index-term-ascii-lowercase-3">ASCII lowercase</a>.
66516651

66526652
</p></li><li><p>Return <a href="#dfn-success" class="internalDFN" data-link-type="dfn" id="ref-for-dfn-success-67">success</a> with data <var>qualified name</var>.
66536653
</p></li></ol>
@@ -26270,6 +26270,8 @@ <h1 id="title" class="title">WebDriver</h1>
2627026270
<ul>
2627126271
<li>
2627226272
<a href="#ref-for-index-term-ascii-lowercase-1" title="§ 7.2 Processing capabilities">§ 7.2 Processing capabilities</a> <a href="#ref-for-index-term-ascii-lowercase-2" title="Reference 2">(2)</a>
26273+
</li><li>
26274+
<a href="#ref-for-index-term-ascii-lowercase-3" title="§ 12.4.6 Get Element Tag Name">§ 12.4.6 Get Element Tag Name</a>
2627326275
</li>
2627426276
</ul>
2627526277
</div><div class="dfn-panel" hidden="" role="dialog" aria-modal="true" id="dfn-panel-for-index-term-contain-for-list" aria-label="Links in this document to definition: contain (for list)">
@@ -26617,7 +26619,7 @@ <h1 id="title" class="title">WebDriver</h1>
2661726619
</dd><dt id="bib-page-visibility">[PAGE-VISIBILITY]</dt><dd>
2661826620
<a href="https://www.w3.org/TR/page-visibility/"><cite>Page Visibility (Second Edition)</cite></a>. Jatinder Mann; Arvind Jain. W3C. 29 October 2013. W3C Recommendation. URL: <a href="https://www.w3.org/TR/page-visibility/">https://www.w3.org/TR/page-visibility/</a>
2661926621
</dd><dt id="bib-pointer-events">[POINTER-EVENTS]</dt><dd>
26620-
<a href="https://www.w3.org/TR/pointerevents4/"><cite>Pointer Events</cite></a>. Patrick Lauke; Robert Flack. W3C. 25 February 2026. W3C Working Draft. URL: <a href="https://www.w3.org/TR/pointerevents4/">https://www.w3.org/TR/pointerevents4/</a>
26622+
<a href="https://www.w3.org/TR/pointerevents4/"><cite>Pointer Events</cite></a>. Patrick Lauke; Robert Flack. W3C. 22 May 2026. W3C Working Draft. URL: <a href="https://www.w3.org/TR/pointerevents4/">https://www.w3.org/TR/pointerevents4/</a>
2662126623
</dd><dt id="bib-promises-guide">[PROMISES-GUIDE]</dt><dd>
2662226624
<a href="https://www.w3.org/2001/tag/doc/promises-guide"><cite>Writing Promise-Using Specifications</cite></a>. Domenic Denicola. W3C. 9 November 2018. TAG Finding. URL: <a href="https://www.w3.org/2001/tag/doc/promises-guide">https://www.w3.org/2001/tag/doc/promises-guide</a>
2662326625
</dd><dt id="bib-rfc1928">[RFC1928]</dt><dd>
@@ -26663,7 +26665,7 @@ <h1 id="title" class="title">WebDriver</h1>
2666326665
</dd><dt id="bib-wai-aria-1-2">[wai-aria-1.2]</dt><dd>
2666426666
<a href="https://www.w3.org/TR/wai-aria-1.2/"><cite>Accessible Rich Internet Applications (WAI-ARIA) 1.2</cite></a>. Joanmarie Diggs; James Nurthen; Michael Cooper; Carolyn MacLeod. W3C. 6 June 2023. W3C Recommendation. URL: <a href="https://www.w3.org/TR/wai-aria-1.2/">https://www.w3.org/TR/wai-aria-1.2/</a>
2666526667
</dd><dt id="bib-webdriver-bidi">[WebDriver-BiDi]</dt><dd>
26666-
<a href="https://www.w3.org/TR/webdriver-bidi/"><cite>WebDriver BiDi</cite></a>. James Graham; Alex Rudenko; Maksim Sadym. W3C. 11 May 2026. W3C Working Draft. URL: <a href="https://www.w3.org/TR/webdriver-bidi/">https://www.w3.org/TR/webdriver-bidi/</a>
26668+
<a href="https://www.w3.org/TR/webdriver-bidi/"><cite>WebDriver BiDi</cite></a>. James Graham; Alex Rudenko; Maksim Sadym. W3C. 22 May 2026. W3C Working Draft. URL: <a href="https://www.w3.org/TR/webdriver-bidi/">https://www.w3.org/TR/webdriver-bidi/</a>
2666726669
</dd><dt id="bib-webidl">[WEBIDL]</dt><dd>
2666826670
<a href="https://webidl.spec.whatwg.org/"><cite>Web IDL Standard</cite></a>. Edgar Chen; Timothy Gu. WHATWG. Living Standard. URL: <a href="https://webidl.spec.whatwg.org/">https://webidl.spec.whatwg.org/</a>
2666926671
</dd><dt id="bib-xpath">[XPATH]</dt><dd>
@@ -26728,7 +26730,7 @@ <h1 id="title" class="title">WebDriver</h1>
2672826730
if (HL_COLORS.get("respec-hl-c1") === true) return "respec-hl-c1";
2672926731

2673026732
// otherwise get some other available color
26731-
return HL_COLORS.keys().find(c => HL_COLORS.get(c)) || "respec-hl-c1";
26733+
return [...HL_COLORS.keys()].find(c => HL_COLORS.get(c)) || "respec-hl-c1";
2673226734
}
2673326735

2673426736
/**

0 commit comments

Comments
 (0)