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

Side by Side Diff: LayoutTests/fast/css/font-face-with-lighter-or-bolder-weight-crash.html

Issue 542713002: Handle font-weigths with 'bolder' or 'lighter' values in @font-face rules (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Comment is added. Created 6 years, 3 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 unified diff | Download patch
« no previous file with comments | « no previous file | LayoutTests/fast/css/font-face-with-lighter-or-bolder-weight-crash-expected.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <head>
3 <style>
4 @font-face {
5 font-family: firstFace;
6 src: local("Helvetica");
7 font-weight: bolder;
8 }
9
10 @font-face {
11 font-family: secondFace;
12 src: local("Helvetica");
13 font-weight: lighter;
14 }
15 </style>
16 <body>
17 <p>Test for a crash when a font-weight property in @font-face contains one o f the relative 'lighter' or 'bolder' keywords.
18 PASS if Blink does not crash in debug.
19 </p>
20 <script>
21 if (window.testRunner)
22 testRunner.dumpAsText();
23 </script>
24 </body>
OLDNEW
« no previous file with comments | « no previous file | LayoutTests/fast/css/font-face-with-lighter-or-bolder-weight-crash-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698