| Index: third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
|
| diff --git a/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp b/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
|
| index ad829bc1d99588bb8d620d421d18e290daaddfbe..01a17a70aaeb0f2ade6890290a9ecef6b2f3bc3b 100644
|
| --- a/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
|
| +++ b/third_party/WebKit/Source/core/css/CSSDefaultStyleSheets.cpp
|
| @@ -103,6 +103,21 @@ CSSDefaultStyleSheets::CSSDefaultStyleSheets()
|
| m_defaultQuirksStyle->addRulesFromSheet(quirksStyleSheet(), screenEval());
|
| }
|
|
|
| +RuleSet* CSSDefaultStyleSheets::defaultStyle() const
|
| +{
|
| + return m_defaultStyle.get();
|
| +}
|
| +
|
| +RuleSet* CSSDefaultStyleSheets::defaultQuirksStyle() const
|
| +{
|
| + return m_defaultQuirksStyle.get();
|
| +}
|
| +
|
| +RuleSet* CSSDefaultStyleSheets::defaultPrintStyle() const
|
| +{
|
| + return m_defaultPrintStyle.get();
|
| +}
|
| +
|
| RuleSet* CSSDefaultStyleSheets::defaultViewSourceStyle()
|
| {
|
| if (!m_defaultViewSourceStyle) {
|
| @@ -125,6 +140,36 @@ RuleSet* CSSDefaultStyleSheets::defaultXHTMLMobileProfileStyle()
|
| return m_defaultXHTMLMobileProfileStyle.get();
|
| }
|
|
|
| +StyleSheetContents* CSSDefaultStyleSheets::defaultStyleSheet() const
|
| +{
|
| + return m_defaultStyleSheet.get();
|
| +}
|
| +
|
| +StyleSheetContents* CSSDefaultStyleSheets::quirksStyleSheet() const
|
| +{
|
| + return m_quirksStyleSheet.get();
|
| +}
|
| +
|
| +StyleSheetContents* CSSDefaultStyleSheets::svgStyleSheet() const
|
| +{
|
| + return m_svgStyleSheet.get();
|
| +}
|
| +
|
| +StyleSheetContents* CSSDefaultStyleSheets::mathmlStyleSheet() const
|
| +{
|
| + return m_mathmlStyleSheet.get();
|
| +}
|
| +
|
| +StyleSheetContents* CSSDefaultStyleSheets::mediaControlsStyleSheet() const
|
| +{
|
| + return m_mediaControlsStyleSheet.get();
|
| +}
|
| +
|
| +StyleSheetContents* CSSDefaultStyleSheets::fullscreenStyleSheet() const
|
| +{
|
| + return m_fullscreenStyleSheet.get();
|
| +}
|
| +
|
| RuleSet* CSSDefaultStyleSheets::defaultMobileViewportStyle()
|
| {
|
| if (!m_defaultMobileViewportStyle) {
|
|
|