1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
<!DOCTYPE html>
<title>Resolving @keyframe name conflicts with cascade layers</title>
<link rel="help" href="https://drafts.csswg.org/css-cascade-5/#layering">
<link rel="author" href="mailto:xiaochengh@chromium.org">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<style>
#target {
font-size: 20px;
width: min-content;
}
</style>
<div id="target">Test</div>
<script>
// In all tests, width of #target should be 80px.
const testCases = [
{
title: '@font-face unlayered overrides layered',
style: `
#target {
font-family: custom-font;
}
@font-face {
font-family: custom-font;
src: url('/fonts/Ahem.ttf');
}
@layer {
@font-face {
font-family: custom-font;
src: url('/fonts/noto/noto-sans-v8-latin-regular.woff') format('woff');
}
}
`
},
{
title: '@font-face override between layers',
style: `
@layer base, override;
#target {
font-family: custom-font;
}
@layer override {
@font-face {
font-family: custom-font;
src: url('/fonts/Ahem.ttf');
}
}
@layer base {
@font-face {
font-family: custom-font;
src: url('/fonts/noto/noto-sans-v8-latin-regular.woff') format('woff');
}
}
`
},
{
title: '@font-face override update with appended sheet 1',
style: `
@layer base, override;
#target {
font-family: custom-font;
}
@layer override {
@font-face {
font-family: custom-font;
src: url('/fonts/Ahem.ttf');
}
}
`,
append: `
@layer base {
@font-face {
font-family: custom-font;
src: url('/fonts/noto/noto-sans-v8-latin-regular.woff') format('woff');
}
}
`
},
{
title: '@font-face override update with appended sheet 2',
style: `
@layer base, override;
#target {
font-family: custom-font;
}
@layer base {
@font-face {
font-family: custom-font;
src: url('/fonts/noto/noto-sans-v8-latin-regular.woff') format('woff');
}
}
`,
append: `
@layer override {
@font-face {
font-family: custom-font;
src: url('/fonts/Ahem.ttf');
}
}
`
},
];
for (let testCase of testCases) {
promise_test(async () => {
var documentStyle = document.createElement('style');
documentStyle.appendChild(document.createTextNode(testCase['style']));
document.head.appendChild(documentStyle);
var appendedStyle;
if (testCase['append']) {
document.body.offsetLeft; // Force style update
appendedStyle = document.createElement('style');
appendedStyle.appendChild(document.createTextNode(testCase['append']));
document.head.appendChild(appendedStyle);
}
await document.fonts.load('20px/1 custom-font');
assert_equals(getComputedStyle(target).width, '80px');
if (appendedStyle)
appendedStyle.remove();
documentStyle.remove();
}, testCase['title']);
}
</script>
|