Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(35)

Unified Diff: third_party/WebKit/LayoutTests/fast/css/fontfaceset-download-error.html

Issue 1933343002: Do not accept CSS identifiers for format() (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix tests Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/fontfaceset-multiple-families.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/LayoutTests/fast/css/fontfaceset-download-error.html
diff --git a/third_party/WebKit/LayoutTests/fast/css/fontfaceset-download-error.html b/third_party/WebKit/LayoutTests/fast/css/fontfaceset-download-error.html
index 5a8724686e1728ed402e43bfea8bd112526bdbfa..d27d0f41330197627cd2e27c21e0e7fe35cc3179 100644
--- a/third_party/WebKit/LayoutTests/fast/css/fontfaceset-download-error.html
+++ b/third_party/WebKit/LayoutTests/fast/css/fontfaceset-download-error.html
@@ -5,7 +5,7 @@
/* Test 1: Invalid font data */
@font-face {
font-family: myfont1;
- src: url('resources/invalidfont.png') format(opentype);
+ src: url('resources/invalidfont.png') format("opentype");
}
/* Test 2: Download error */
@@ -17,7 +17,7 @@
/* Test 3: Empty data url */
@font-face {
font-family: myfont3;
- src: url(data:application/x-truetype-font,) format(truetype);
+ src: url(data:application/x-truetype-font,) format("truetype");
}
/* Test 4: Download error followed by existing local font */
@@ -29,7 +29,7 @@
/* Test 5: Multiple errors */
@font-face {
font-family: myfont5;
- src: url('resources/DownLoadErrorAhem.otf'), url(data:application/x-truetype-font,) format(truetype);
+ src: url('resources/DownLoadErrorAhem.otf'), url(data:application/x-truetype-font,) format("truetype");
}
</style>
<script>
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/fast/css/fontfaceset-multiple-families.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698