@@ -2338,7 +2338,8 @@ Then each component value is parsed according to this grammar:
2338
2338
2339
2339
<pre class="prod"><dfn id="font-tech-values"><font-tech></dfn>
2340
2340
= [<<font-features-tech>> | <<color-font-tech>>
2341
- | variations | palettes | incremental ]</pre>
2341
+ | variations | palettes |
2342
+ incremental-patch | incremental-range | incremental-auto ]</pre>
2342
2343
2343
2344
<pre class="prod"><dfn id="font-features-tech-values"><font-features-tech></dfn>
2344
2345
= [features-opentype | features-aat | features-graphite]</pre>
@@ -2401,7 +2402,7 @@ or font format.
2401
2402
for optimal performance.
2402
2403
Then,
2403
2404
for incremental transfer using the
2404
- <a href="https://www.w3.org/TR/2020/NOTE-PFE-evaluation-20201015/ #range-request">range-request method</a> ,
2405
+ <a href="https://w3c.github.io/IFT/Overview.html #range-request-incxfer ">range-request method</a> ,
2405
2406
the raw uncompressed OpenType font is provided
2406
2407
so that the client
2407
2408
can perform byte range requests.
@@ -2410,7 +2411,7 @@ or font format.
2410
2411
@font-face {
2411
2412
font-family: "MyIncrementallyLoadedWebFont";
2412
2413
src: url("FallbackURLForBrowsersWhichDontSupportIncrementalLoading.woff2") format("woff2");
2413
- src: url("MyIncrementallyLoadedWebFont.otf") format(opentype) tech(incremental);
2414
+ src: url("MyIncrementallyLoadedWebFont.otf") format(opentype) tech(incremental-range );
2414
2415
}
2415
2416
</pre>
2416
2417
</div>
@@ -7577,9 +7578,13 @@ The System Font is the font which is used by the ''system-ui'' <a href="#system-
7577
7578
<code> <a href="https://docs.microsoft.com/en-us/typography/opentype/spec/cpal">CPAL</a> </code> table.
7578
7579
The section on [[#color-font-support]] describes properties that interact with these facilities.
7579
7580
7580
- The 'incremental' tech refers to client support for
7581
- incremental font loading,
7582
- using either the range-request or the patch-subset method [[PFE-report]] .
7581
+ The 'incremental-patch' , 'incremental-range' and 'incremental-auto' techs
7582
+ refer to client support for incremental font transfer [[IFT]] ,
7583
+ using the patch-subset, range-request, or
7584
+ <a href="https://w3c.github.io/IFT/Overview.html#opt-in">automatic negotiation</a>
7585
+ between these two methods.
7586
+
7587
+ <p class="informative"> For background on these, see [[PFE-report]] .</p>
7583
7588
7584
7589
Web authors can specify the 'tech' function
7585
7590
inside an ''@font-face'' 'src!!descriptor' descriptor
0 commit comments