Skip to content

Commit 3f94ab6

Browse files
committed
[css-font-loading] Switch legacy reference to CanvasProxy to instead be OffscreenCanvas. Fix silly typo while I'm here.
1 parent a904f1e commit 3f94ab6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

css-font-loading-3/Overview.bs

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Editor: Tab Atkins Jr., Google, http://xanthir.com/contact/, w3cid 42199
1212
Former Editor: John Daggett, Mozilla, jdaggett@mozilla.com
1313
Abstract: This CSS module describes events and interfaces used for dynamically loading font resources.
1414
Link Defaults: css-fonts-3 (descriptor) src, dom (interface) Event
15-
Ignored Terms: EventHandler, InvalidModificationError, WorkerGlobalScope, CanvasProxy, Document, add(), src
15+
Ignored Terms: EventHandler, InvalidModificationError, WorkerGlobalScope, Document, add(), src
1616
</pre>
1717

1818
<pre class="link-defaults">
@@ -87,7 +87,7 @@ The <code>FontFace</code> Interface</h2>
8787
CSSOMString variant = "normal";
8888
CSSOMString featureSettings = "normal";
8989
CSSOMString variationSettings = "normal";
90-
CSSOMString isplay = "auto";
90+
CSSOMString display = "auto";
9191
};
9292

9393
enum FontFaceLoadStatus { "unloaded", "loading", "loaded", "error" };
@@ -104,7 +104,7 @@ The <code>FontFace</code> Interface</h2>
104104
attribute CSSOMString variant;
105105
attribute CSSOMString featureSettings;
106106
attribute CSSOMString variationSettings;
107-
attribute CSSOMString isplay;
107+
attribute CSSOMString display;
108108

109109
readonly attribute FontFaceLoadStatus status;
110110

@@ -1019,7 +1019,7 @@ Worker FontFaceSources</h3>
10191019

10201020
Note: {{FontFace}} objects can be constructed and added to it as normal,
10211021
which affects CSS font-matching within the worker
1022-
(such as, for example, drawing text into a {{CanvasProxy}}).
1022+
(such as, for example, drawing text into a {{OffscreenCanvas}}).
10231023

10241024
<h3 id="document-font-face-set">
10251025
Interaction with CSS’s ''@font-face'' Rule</h3>

0 commit comments

Comments
 (0)