blob: 73299f18e1f8d00db09ae89016d75e77d5584038 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<!DOCTYPE html>
<style>
@font-face {
font-family: NotFound;
src: url(notfound.ttf);
}
select { font-family: NotFound, sans-serif; }
</style>
<p>You should see the word PASS below.</p>
<select>
<option>PASS</option>
</select>
|