OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 28 matching lines...) Expand all Loading... |
39 #include "core/css/CSSFontFaceSrcValue.h" | 39 #include "core/css/CSSFontFaceSrcValue.h" |
40 #include "core/css/CSSFontSelector.h" | 40 #include "core/css/CSSFontSelector.h" |
41 #include "core/css/CSSPrimitiveValue.h" | 41 #include "core/css/CSSPrimitiveValue.h" |
42 #include "core/css/CSSUnicodeRangeValue.h" | 42 #include "core/css/CSSUnicodeRangeValue.h" |
43 #include "core/css/CSSValueList.h" | 43 #include "core/css/CSSValueList.h" |
44 #include "core/css/FontFaceDescriptors.h" | 44 #include "core/css/FontFaceDescriptors.h" |
45 #include "core/css/LocalFontFaceSource.h" | 45 #include "core/css/LocalFontFaceSource.h" |
46 #include "core/css/RemoteFontFaceSource.h" | 46 #include "core/css/RemoteFontFaceSource.h" |
47 #include "core/css/StylePropertySet.h" | 47 #include "core/css/StylePropertySet.h" |
48 #include "core/css/StyleRule.h" | 48 #include "core/css/StyleRule.h" |
49 #include "core/css/parser/CSSParser.h" | 49 #include "core/css/parser/BisonCSSParser.h" |
50 #include "core/dom/DOMException.h" | 50 #include "core/dom/DOMException.h" |
51 #include "core/dom/Document.h" | 51 #include "core/dom/Document.h" |
52 #include "core/dom/ExceptionCode.h" | 52 #include "core/dom/ExceptionCode.h" |
53 #include "core/dom/StyleEngine.h" | 53 #include "core/dom/StyleEngine.h" |
54 #include "core/frame/LocalFrame.h" | 54 #include "core/frame/LocalFrame.h" |
55 #include "core/frame/Settings.h" | 55 #include "core/frame/Settings.h" |
56 #include "core/svg/SVGFontFaceElement.h" | 56 #include "core/svg/SVGFontFaceElement.h" |
57 #include "core/svg/SVGFontFaceSource.h" | 57 #include "core/svg/SVGFontFaceSource.h" |
58 #include "core/svg/SVGRemoteFontFaceSource.h" | 58 #include "core/svg/SVGRemoteFontFaceSource.h" |
59 #include "platform/FontFamilyNames.h" | 59 #include "platform/FontFamilyNames.h" |
60 #include "platform/SharedBuffer.h" | 60 #include "platform/SharedBuffer.h" |
61 | 61 |
62 namespace blink { | 62 namespace blink { |
63 | 63 |
64 // FIXME: This should probably live in CSSParser since the same logic is | |
65 // duplicated elsewhere in the codebase | |
66 static PassRefPtrWillBeRawPtr<CSSValue> parseCSSValue(const Document* document,
const String& s, CSSPropertyID propertyID) | 64 static PassRefPtrWillBeRawPtr<CSSValue> parseCSSValue(const Document* document,
const String& s, CSSPropertyID propertyID) |
67 { | 65 { |
68 if (s.isEmpty()) | 66 if (s.isEmpty()) |
69 return nullptr; | 67 return nullptr; |
70 RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = MutableStyleProper
tySet::create(); | 68 RefPtrWillBeRawPtr<MutableStylePropertySet> parsedStyle = MutableStyleProper
tySet::create(); |
71 CSSParser::parseValue(parsedStyle.get(), propertyID, s, true, *document); | 69 BisonCSSParser::parseValue(parsedStyle.get(), propertyID, s, true, *document
); |
72 return parsedStyle->getPropertyCSSValue(propertyID); | 70 return parsedStyle->getPropertyCSSValue(propertyID); |
73 } | 71 } |
74 | 72 |
75 PassRefPtrWillBeRawPtr<FontFace> FontFace::create(ExecutionContext* context, con
st AtomicString& family, const String& source, const FontFaceDescriptors* descri
ptors) | 73 PassRefPtrWillBeRawPtr<FontFace> FontFace::create(ExecutionContext* context, con
st AtomicString& family, const String& source, const FontFaceDescriptors* descri
ptors) |
76 { | 74 { |
77 RefPtrWillBeRawPtr<FontFace> fontFace = adoptRefWillBeNoop(new FontFace(cont
ext, family, descriptors)); | 75 RefPtrWillBeRawPtr<FontFace> fontFace = adoptRefWillBeNoop(new FontFace(cont
ext, family, descriptors)); |
78 | 76 |
79 RefPtrWillBeRawPtr<CSSValue> src = parseCSSValue(toDocument(context), source
, CSSPropertySrc); | 77 RefPtrWillBeRawPtr<CSSValue> src = parseCSSValue(toDocument(context), source
, CSSPropertySrc); |
80 if (!src || !src->isValueList()) | 78 if (!src || !src->isValueList()) |
81 fontFace->setError(DOMException::create(SyntaxError, "The source provide
d ('" + source + "') could not be parsed as a value list.")); | 79 fontFace->setError(DOMException::create(SyntaxError, "The source provide
d ('" + source + "') could not be parsed as a value list.")); |
(...skipping 504 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 visitor->trace(m_cssFontFace); | 584 visitor->trace(m_cssFontFace); |
587 visitor->trace(m_callbacks); | 585 visitor->trace(m_callbacks); |
588 } | 586 } |
589 | 587 |
590 bool FontFace::hadBlankText() const | 588 bool FontFace::hadBlankText() const |
591 { | 589 { |
592 return m_cssFontFace->hadBlankText(); | 590 return m_cssFontFace->hadBlankText(); |
593 } | 591 } |
594 | 592 |
595 } // namespace blink | 593 } // namespace blink |
OLD | NEW |