| Index: WebCore/css/CSSStyleSheet.h
|
| ===================================================================
|
| --- WebCore/css/CSSStyleSheet.h (revision 78365)
|
| +++ WebCore/css/CSSStyleSheet.h (working copy)
|
| @@ -87,7 +87,7 @@
|
|
|
| virtual void checkLoaded();
|
|
|
| - Document* document();
|
| + Document* document() { return m_document; }
|
|
|
| const String& charset() const { return m_charset; }
|
|
|
| @@ -112,6 +112,7 @@
|
| virtual bool isCSSStyleSheet() const { return true; }
|
| virtual String type() const { return "text/css"; }
|
|
|
| + Document* m_document;
|
| OwnPtr<CSSNamespace> m_namespaces;
|
| String m_charset;
|
| bool m_loadCompleted : 1;
|
|
|