Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions .github/workflows/auto-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: CI
on:
pull_request: {}
push:
branches: [main]
jobs:
main:
name: Build, Validate and Deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: w3c/spec-prod@v2
with:
TOOLCHAIN: bikeshed
GH_PAGES_BRANCH: gh-pages
23 changes: 0 additions & 23 deletions .github/workflows/build.yml

This file was deleted.

29 changes: 0 additions & 29 deletions Makefile

This file was deleted.

8 changes: 6 additions & 2 deletions index.bs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ Status Text: If you wish to make comments regarding this document, please create
Default Highlight: js
</pre>

<pre class=link-defaults>
spec:hr-time-3; type:dfn; text:duration
</pre>

<style>
dl {
margin-left: 2em;
Expand Down Expand Up @@ -288,7 +292,7 @@ The {{PerformanceScriptTiming/invoker}} attribute's getter steps are:
1. If |this|'s [=PerformanceScriptTiming/timing info=]'s [=script timing info/event target element id=] is not the empty string, then:
Set |targetName| to the [=concatenate|concatenation=] of « |targetName|, "#", |this|'s [=PerformanceScriptTiming/timing info=]'s [=script timing info/event target element id=] ».
1. Otherwise, If |this|'s [=PerformanceScriptTiming/timing info=]'s [=script timing info/event target element src attribute=] is not the empty string, then:
Set |targetName| to the [=concatenate|concatenation=] of « |targetName|, '[src=', |this|'s [=PerformanceScriptTiming/timing info=]'s [=script timing info/event target element src attribute=], ']' ».
Set |targetName| to the [=concatenate|concatenation=] of « |targetName|, "[src=", |this|'s [=PerformanceScriptTiming/timing info=]'s [=script timing info/event target element src attribute=], "]" ».
1. Return the [=concatenate|concatenation=] of « |targetName|, ".on", [=this=]'s [=PerformanceScriptTiming/timing info=]'s [=script timing info/event type=] ».

Issue: this feels a bit custom, need to discuss name generation.
Expand Down Expand Up @@ -347,7 +351,7 @@ It has the following [=struct/items=]:
: <dfn>first ui event timestamp</dfn>
: <dfn>end time</dfn>
:: A {{DOMHighResTimeStamp}}, initially 0.
Note: all the above are [=monotonic clock/unsafe current time=|unsafe=],
Note: all the above are [=monotonic clock/unsafe current time|unsafe=],
and should be [=coarsen time|coarsened=] when exposed via an API.

: <dfn>task durations</dfn>
Expand Down
Loading