Skip to content

Commit

Permalink
Fix invalid CSS which was breaking build
Browse files Browse the repository at this point in the history
SHA: 03864ba
Reason: push, by garykac

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
garykac and github-actions[bot] committed Aug 23, 2023
1 parent bd803f3 commit 0914c96
Showing 1 changed file with 247 additions and 6 deletions.
253 changes: 247 additions & 6 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,250 @@
<title>UI Events</title>
<meta content="ED" name="w3c-status">
<link href="https://www.w3.org/StyleSheets/TR/2021/W3C-ED" rel="stylesheet">
<meta content="Bikeshed version 5edf5e459, updated Thu Jun 22 11:28:01 2023 -0700" name="generator">
<meta content="Bikeshed version 6edc88947, updated Thu Aug 17 11:18:09 2023 -0700" name="generator">
<link href="https://www.w3.org/TR/uievents/" rel="canonical">
<meta content="e186b4427f7cd9b8183b09a70628b8c058289403" name="document-revision">
<meta content="03864ba76179265e28f0ee3876d6891a74ccbea4" name="document-revision">
<style>
.note { border-left-style: solid; border-left-width: 0.25em; background: none repeat scroll 0 0 #E9FBE9; border-color: #52E052; }
.note em, .warning em, .note i, .warning i { font-style: normal; }
p.note, div.note { padding: 0.5em 2em; }
span.note { padding: 0 2em; }
.note p:first-child { margin-top: 0; }
.note p:last-child { margin-bottom: 0; }
p.note:before { content: 'Note: '; font-weight: bolder;}
@media screen and (prefers-color-scheme: dark) {
.note {background: none repeat scroll 0 0 #0b730b; border-color: #E9FBE9;}
}

.warning { background-color: #F9F0D4; border: medium double #FF0000; margin: 1em; padding: 1em; }
.warning p:first-child { margin-top: 0; }
.warning p:last-child { margin-bottom: 0; }
.warning:before { font-style: normal; }
p.warning:before { content: '\26A0 Warning! '; font-weight:bolder;}
.warning em, .warning i { font-style: normal; }
@media screen and (prefers-color-scheme: dark) {
.warning {background: none repeat scroll 0 0 #997c25; border-color: #e88d8d;}
}

.critical {margin:1em; border:double red; padding:1em; background-color:#F9F0D4;}

.XXX { color: #E50000; background: white; border: solid red; padding: 0.5em; margin: 1em 0; }
.XXX > :first-child { margin-top: 0; }
p .XXX { line-height: 3em; }
@media screen and (prefers-color-scheme: dark) {
.XXX {background: none repeat scroll 0 0 #6d1d1d; border-color: #e88d8d; color: #e88d8d;}
}

pre.idl, pre.idl-ignore { border: solid thin #d3d3d3; background: #FCFCFC; padding: 0.5em 1em; position: relative; }
pre.idl :link, pre.idl :visited, pre.idl-ignore :link, pre.idl-ignore :visited { color: inherit; background: transparent; }
pre.idl::before, pre.idl-ignore::before { content: "IDL"; font: bold small sans-serif; padding: 0.5em; background: white; position: absolute; top: 0; margin: -1px 0 0 -4em; width: 1.5em; border: thin solid; border-radius: 0 0 0 0.5em }

.intro-dom {
font-size: 0.9em;
font-style: italic;
}

.comment {
color: green;
}

.example:before { content: 'Example ' counter(example) ':'; font-weight: bolder; }
.example pre:last-child { margin-bottom: 0; }
.example code.pre {white-space: pre;}


/* Used when spelling out words or symbols phonetically. */
span.phonetic {
font-style: italic;
}

/* KEY
* Denotes a key value (the value of the KeyboardEvent.key property).
*/
code.key {
color: #191970;
background-color: #b0e0e6;
padding: 0 2px;
border: 1px solid #b0d0d6;
border-radius: 3px;
}
code.key a:link, code.key a:visited {
color: #191970;
text-decoration: none;
}
code.key:hover, code.key a:hover {
color: #000000;
background-color: #b0d0d6;
}

/* CODE
* Denotes a code value that indicates the physical location of the key on
* the keyboard). This is the value of the KeyboardEvent.code property.
*/
code.code {
color: #191970;
background-color: #ffc4ff;
padding: 0 2px;
border: 1px solid #f0a4f0;
border-radius: 3px;
}
code.code a:link, code.code a:visited {
color: #191970;
text-decoration: none;
}
code.code:hover, code.code a:hover {
color: #000000;
background-color: #f0a4f0;
}

/* Denotes a string displayed on the keycap. */
code.keycap {
padding: 0 2px;
border: 1px solid black;
border-radius: 3px;
}

@media screen and (prefers-color-scheme: dark) {
code.keycap {
border: 1px solid lightgray;
}
}

/* Denotes a Unicode code-point for the character. */
code.unicode {
color: #191970;
background-color: #98fb98;
padding: 0 2px;
}

/* Denotes an example glyph for the character. */
code.glyph {
color: #191970;
background-color: #ffe4b5;
}


/* Formatting for data tables (including the keyboard codes) */
.data-table {
border-collapse:collapse;
text-align:left;
width: 100%;
}

.data-table th {
background:none repeat scroll 0 0 #B9C9FE;
border-bottom:1px solid #FFFFFF;
border-top:4px solid #AABCFE;
color:#003399;
font-weight:normal;
padding: 0.4em 1em;
}

.data-table td {
background:none repeat scroll 0 0 #E8EDFF;
border-bottom:1px solid #FFFFFF;
border-top:1px solid transparent;
color:#666699;
padding: 0.4em 1em;
}

.data-table tr:hover td {
background:none repeat scroll 0 0 #D0DAFD;
color:#333399;
}

/* Formatting for the event sequence tables.
*/
.event-sequence-table th {
background:none repeat scroll 0 0 #E8EDFF;
font-weight:normal;
padding: 0.25em 0.5em 0.25em 0.5em;
font-size: 0.9em;
}

.event-sequence-table td {
padding: 0 0.5em 0 0.5em;
font-size: 0.8em;
vertical-align: top;
}

.event-sequence-table tr:hover td {
background:none repeat scroll 0 0 #E8EDFF;
}

@media screen and (prefers-color-scheme: dark) {
.event-sequence-table th {background: none repeat scroll 0 0 #203785;}
.event-sequence-table tr:hover td {background:none repeat scroll 0 0 #203785;}
}

.example .event-sequence-table {
border: 1px solid #000000;
margin: 3px;
}

.example .event-sequence-table td {
background:none repeat scroll 0 0 #FCFAEE;
}

.example .event-sequence-table th {
background:none repeat scroll 0 0 #ede19b;
}

.example .event-sequence-table tr:hover td {
background:none repeat scroll 0 0 #ede19b;
}


@media screen and (prefers-color-scheme: dark) {
.example .event-sequence-table {border: 1px solid lightgray;}
.example .event-sequence-table th {background: none repeat scroll 0 0 #8a7a1a;}
.example .event-sequence-table td {background: none repeat scroll 0 0 #514c2b;}
.example .event-sequence-table tr:hover td {background:none repeat scroll 0 0 #8a7a1a;}
}

.cell-center {
text-align: center;
}

.cell-number {
text-align: right;
}


/* The cell in a code table that contains the code value. */
.code-table-code {
vertical-align: top;
}

.event-definition {
border: 2px solid black;
width: 95%;
}
.event-definition td,
.event-definition th {
padding-left: 8px;
padding-right: 8px;
font-size: 0.9em;
}
.event-definition th {
text-align: left;
font-weight: normal;
white-space: nowrap;
background-color: #D0DAFD;
}
.event-definition td {
width: 100%;
}
.event-definition td > ul > li,
.event-definition td > ul > li > p {
margin-top: 0;
margin-bottom: 0;
}
@media screen and (prefers-color-scheme: dark) {
.event-definition {border: 2px solid lightgray;}
.event-definition th {background: none repeat scroll 0 0 #203785;}
}
</style>
<style>/* Boilerplate: style-autolinks */
.css.css, .property.property, .descriptor.descriptor {
color: var(--a-normal-text);
Expand Down Expand Up @@ -868,7 +1109,7 @@
<div class="head">
<p data-fill-with="logo"><a class="logo" href="https://www.w3.org/"> <img alt="W3C" height="48" src="https://www.w3.org/StyleSheets/TR/2021/logos/W3C" width="72"> </a> </p>
<h1>UI Events</h1>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2023-06-27">27 June 2023</time></p>
<p id="w3c-state"><a href="https://www.w3.org/standards/types#ED">Editor’s Draft</a>, <time class="dt-updated" datetime="2023-08-23">23 August 2023</time></p>
<details open>
<summary>More details about this document</summary>
<div data-fill-with="spec-metadata">
Expand All @@ -878,7 +1119,7 @@ <h1>UI Events</h1>
<dt>Latest published version:
<dd><a href="https://www.w3.org/TR/uievents/">https://www.w3.org/TR/uievents/</a>
<dt>Previous Versions:
<dd><a href="https://www.w3.org/TR/2023/CR-uievents-code-20230530/" rel="prev">https://www.w3.org/TR/2023/CR-uievents-code-20230530/</a>
<dd><a href="https://www.w3.org/TR/2023/WD-uievents-20230627/" rel="prev">https://www.w3.org/TR/2023/WD-uievents-20230627/</a>
<dt>Feedback:
<dd><a href="https://github.com/w3c/uievents/issues/">GitHub</a>
<dt class="editor">Editors:
Expand Down Expand Up @@ -914,7 +1155,7 @@ <h2 class="no-num no-toc no-ref heading settled" id="sotd"><span class="content"
be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite
this document as other than work in progress. </p>
<p> This document was produced by a group operating under the <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/"><abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. <abbr title="World Wide Web Consortium">W3C</abbr> maintains a <a href="https://www.w3.org/2004/01/pp-impl/114929/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="https://www.w3.org/Consortium/Patent-Policy-20200915/#sec-Disclosure">section 6 of the <abbr title="World Wide Web Consortium">W3C</abbr> Patent Policy</a>. </p>
<p>This document is governed by the <a href="https://www.w3.org/2021/Process-20211102/" id="w3c_process_revision">2 November 2021 W3C Process Document</a>. </p>
<p>This document is governed by the <a href="https://www.w3.org/2023/Process-20230612/" id="w3c_process_revision">12 June 2023 W3C Process Document</a>. </p>
</div>
<div data-fill-with="at-risk"></div>
<nav data-fill-with="table-of-contents" id="toc">
Expand Down Expand Up @@ -4534,7 +4775,7 @@ <h5 class="heading settled" data-level="5.6.4.1" id="event-type-keydown"><span c
to shift the document focus from the currently focused element
(if any) to the new focused element, as described in <a href="#events-focusevent">Focus Event Types</a></p>
<li data-md>
<p>If the key is the <code class="keycap">Enter</code> or <code class="keycap"> </code> key and the
<p>If the key is the <code class="keycap">Enter</code> or <code class="keycap"> </code> (Space) key and the
current focus is on a state-changing element, the default action
MUST be to dispatch a <a data-link-type="dfn" href="#click" id="ref-for-click③②"><code>click</code></a> event, and a <a data-link-type="dfn" href="#domactivate" id="ref-for-domactivate"><code>DOMActivate</code></a> event if that event type is supported by the <a data-link-type="dfn" href="#user-agent" id="ref-for-user-agent③④">user agent</a> (refer to <a href="#event-flow-activation">§ 3.5 Activation triggers and behavior</a> for more
details)</p>
Expand Down

0 comments on commit 0914c96

Please sign in to comment.