OLD | NEW |
---|---|
(Empty) | |
1 /* | |
2 * Copyright (C) 2017 Google Inc. All rights reserved. | |
foolip
2017/05/16 12:15:27
Use the 3-line header that begins "Copyright 2017
fserb
2017/05/16 14:14:24
I thought "cl format" or presubmit would pick this
| |
3 */ | |
4 | |
5 // https://dev.w3.org/csswg/css-font-loading/#font-face-source | |
foolip
2017/05/16 12:15:27
Link to https://drafts.csswg.org/css-font-loading/
fserb
2017/05/16 14:14:24
Done.
| |
6 | |
7 [ | |
8 LegacyTreatAsPartialInterface, | |
9 NoInterfaceObject | |
10 ] interface FontFaceSource { | |
11 [MeasureAs=DocumentFonts] readonly attribute FontFaceSet fonts; | |
12 }; | |
OLD | NEW |