OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) | 2 * Copyright (C) 1999 Lars Knoll (knoll@kde.org) |
3 * (C) 1999 Antti Koivisto (koivisto@kde.org) | 3 * (C) 1999 Antti Koivisto (koivisto@kde.org) |
4 * (C) 2000 Simon Hausmann (hausmann@kde.org) | 4 * (C) 2000 Simon Hausmann (hausmann@kde.org) |
5 * (C) 2001 Dirk Mueller (mueller@kde.org) | 5 * (C) 2001 Dirk Mueller (mueller@kde.org) |
6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. | 6 * Copyright (C) 2004, 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserv
ed. |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 10 matching lines...) Expand all Loading... |
21 * Boston, MA 02110-1301, USA. | 21 * Boston, MA 02110-1301, USA. |
22 */ | 22 */ |
23 | 23 |
24 #include "config.h" | 24 #include "config.h" |
25 #include "core/html/HTMLBodyElement.h" | 25 #include "core/html/HTMLBodyElement.h" |
26 | 26 |
27 #include "bindings/core/v8/ScriptEventListener.h" | 27 #include "bindings/core/v8/ScriptEventListener.h" |
28 #include "core/CSSValueKeywords.h" | 28 #include "core/CSSValueKeywords.h" |
29 #include "core/HTMLNames.h" | 29 #include "core/HTMLNames.h" |
30 #include "core/css/CSSImageValue.h" | 30 #include "core/css/CSSImageValue.h" |
| 31 #include "core/css/parser/BisonCSSParser.h" |
31 #include "core/css/StylePropertySet.h" | 32 #include "core/css/StylePropertySet.h" |
32 #include "core/css/parser/CSSParser.h" | |
33 #include "core/dom/Attribute.h" | 33 #include "core/dom/Attribute.h" |
34 #include "core/frame/FrameView.h" | 34 #include "core/frame/FrameView.h" |
35 #include "core/frame/LocalFrame.h" | 35 #include "core/frame/LocalFrame.h" |
36 #include "core/frame/UseCounter.h" | 36 #include "core/frame/UseCounter.h" |
37 #include "core/html/HTMLFrameElementBase.h" | 37 #include "core/html/HTMLFrameElementBase.h" |
38 #include "core/html/parser/HTMLParserIdioms.h" | 38 #include "core/html/parser/HTMLParserIdioms.h" |
39 #include "core/rendering/RenderBox.h" | 39 #include "core/rendering/RenderBox.h" |
40 | 40 |
41 namespace blink { | 41 namespace blink { |
42 | 42 |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
94 if (name == vlinkAttr || name == alinkAttr || name == linkAttr) { | 94 if (name == vlinkAttr || name == alinkAttr || name == linkAttr) { |
95 if (value.isNull()) { | 95 if (value.isNull()) { |
96 if (name == linkAttr) | 96 if (name == linkAttr) |
97 document().textLinkColors().resetLinkColor(); | 97 document().textLinkColors().resetLinkColor(); |
98 else if (name == vlinkAttr) | 98 else if (name == vlinkAttr) |
99 document().textLinkColors().resetVisitedLinkColor(); | 99 document().textLinkColors().resetVisitedLinkColor(); |
100 else | 100 else |
101 document().textLinkColors().resetActiveLinkColor(); | 101 document().textLinkColors().resetActiveLinkColor(); |
102 } else { | 102 } else { |
103 RGBA32 color; | 103 RGBA32 color; |
104 if (CSSParser::parseColor(color, value, !document().inQuirksMode()))
{ | 104 if (BisonCSSParser::parseColor(color, value, !document().inQuirksMod
e())) { |
105 if (name == linkAttr) | 105 if (name == linkAttr) |
106 document().textLinkColors().setLinkColor(color); | 106 document().textLinkColors().setLinkColor(color); |
107 else if (name == vlinkAttr) | 107 else if (name == vlinkAttr) |
108 document().textLinkColors().setVisitedLinkColor(color); | 108 document().textLinkColors().setVisitedLinkColor(color); |
109 else | 109 else |
110 document().textLinkColors().setActiveLinkColor(color); | 110 document().textLinkColors().setActiveLinkColor(color); |
111 } | 111 } |
112 } | 112 } |
113 | 113 |
114 setNeedsStyleRecalc(SubtreeStyleChange); | 114 setNeedsStyleRecalc(SubtreeStyleChange); |
(...skipping 211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
326 int HTMLBodyElement::scrollWidth() | 326 int HTMLBodyElement::scrollWidth() |
327 { | 327 { |
328 // Update the document's layout. | 328 // Update the document's layout. |
329 Document& document = this->document(); | 329 Document& document = this->document(); |
330 document.updateLayoutIgnorePendingStylesheets(); | 330 document.updateLayoutIgnorePendingStylesheets(); |
331 FrameView* view = document.view(); | 331 FrameView* view = document.view(); |
332 return view ? adjustForZoom(view->contentsWidth(), &document) : 0; | 332 return view ? adjustForZoom(view->contentsWidth(), &document) : 0; |
333 } | 333 } |
334 | 334 |
335 } // namespace blink | 335 } // namespace blink |
OLD | NEW |