mirror of
https://github.com/servo/servo.git
synced 2025-08-26 07:38:21 +01:00
Update web-platform-tests to revision bd951736b4d7dbfd862dfa0f27271b544e35ca30
This commit is contained in:
parent
461bce1241
commit
74f3bef690
110 changed files with 2556 additions and 363 deletions
|
@ -0,0 +1,29 @@
|
|||
<!DOCTYPE html>
|
||||
<title>Test for font-display-late-swap feature policy</title>
|
||||
<style>
|
||||
.ahem {
|
||||
font-family: 'Ahem';
|
||||
}
|
||||
.arial {
|
||||
font-family: 'Arial';
|
||||
}
|
||||
</style>
|
||||
<p>Tests if font-display is set to optional for each option except for when it is set to fallback</p>
|
||||
<table id="container">
|
||||
<tr>
|
||||
<th>not-set</th>
|
||||
<th>auto</th>
|
||||
<th>block</th>
|
||||
<th>swap</th>
|
||||
<th>fallback</th>
|
||||
<th>optional</th>
|
||||
</tr>
|
||||
<tr>
|
||||
<td class="arial">a</td>
|
||||
<td class="arial">a</td>
|
||||
<td class="arial">a</td>
|
||||
<td class="arial">a</td>
|
||||
<td class="ahem">a</td>
|
||||
<td class="arial">a</td>
|
||||
</tr>
|
||||
</table>
|
|
@ -0,0 +1,46 @@
|
|||
<!DOCTYPE html>
|
||||
<html class="reftest-wait">
|
||||
<title>Test for font-display-late-swap feature policy</title>
|
||||
<link rel="help" href="https://github.com/w3c/webappsec-feature-policy/blob/master/policies/font-display-late-swap.md">
|
||||
<link rel="match" href="font-display-feature-policy.tentative-ref.html">
|
||||
<style>
|
||||
</style>
|
||||
<p>Tests if font-display is set to optional for each option except for when it is set to fallback</p>
|
||||
<table id="container">
|
||||
<tr>
|
||||
<th>not-set</th>
|
||||
<th>auto</th>
|
||||
<th>block</th>
|
||||
<th>swap</th>
|
||||
<th>fallback</th>
|
||||
<th>optional</th>
|
||||
</tr>
|
||||
</table>
|
||||
<script>
|
||||
const fontDisplayValues = ['', 'auto', 'block', 'swap', 'fallback', 'optional'];
|
||||
const table = document.getElementById('container');
|
||||
|
||||
function makeFontFaceDeclaration(family, display) {
|
||||
url = '/fonts/Ahem.ttf?pipe=trickle(d1)'; // Before the swap period is over
|
||||
return '@font-face { font-family: ' + family + '; src: url("' + url + '"); font-display: ' + display + '; }';
|
||||
}
|
||||
|
||||
window.onload = () => {
|
||||
let tr = document.createElement('tr');
|
||||
for (let display of fontDisplayValues) {
|
||||
const family = display + '-face';
|
||||
const rule = makeFontFaceDeclaration(family, display);
|
||||
document.styleSheets[0].insertRule(rule, 0);
|
||||
let td = document.createElement('td');
|
||||
td.textContent = 'a';
|
||||
td.style.fontFamily = family + ', Arial';
|
||||
tr.appendChild(td);
|
||||
}
|
||||
table.appendChild(tr);
|
||||
const timeoutMilliSec = 1500; // After the font is loaded
|
||||
setTimeout(() => {
|
||||
document.documentElement.classList.remove("reftest-wait");
|
||||
}, timeoutMilliSec);
|
||||
}
|
||||
</script>
|
||||
</html>
|
|
@ -0,0 +1 @@
|
|||
Feature-Policy: font-display-late-swap 'none';
|
Loading…
Add table
Add a link
Reference in a new issue