Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(96)

Side by Side Diff: Source/core/html/HTMLBodyElement.cpp

Issue 112933010: Split out CSSParser public API Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 "CSSValueKeywords.h" 27 #include "CSSValueKeywords.h"
28 #include "HTMLNames.h" 28 #include "HTMLNames.h"
29 #include "bindings/v8/ScriptEventListener.h" 29 #include "bindings/v8/ScriptEventListener.h"
30 #include "core/css/CSSImageValue.h" 30 #include "core/css/CSSImageValue.h"
31 #include "core/css/parser/BisonCSSParser.h" 31 #include "core/css/parser/CSSParser.h"
32 #include "core/css/StylePropertySet.h" 32 #include "core/css/StylePropertySet.h"
33 #include "core/dom/Attribute.h" 33 #include "core/dom/Attribute.h"
34 #include "core/events/ThreadLocalEventNames.h" 34 #include "core/events/ThreadLocalEventNames.h"
35 #include "core/html/HTMLFrameElementBase.h" 35 #include "core/html/HTMLFrameElementBase.h"
36 #include "core/html/parser/HTMLParserIdioms.h" 36 #include "core/html/parser/HTMLParserIdioms.h"
37 #include "core/frame/Frame.h" 37 #include "core/frame/Frame.h"
38 #include "core/frame/FrameView.h" 38 #include "core/frame/FrameView.h"
39 39
40 namespace WebCore { 40 namespace WebCore {
41 41
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
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 (BisonCSSParser::parseColor(color, value, !document().inQuirksMod e())) { 104 if (CSSParser::parseColor(color, value, !document().inQuirksMode())) {
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(); 114 setNeedsStyleRecalc();
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 int HTMLBodyElement::scrollWidth() 282 int HTMLBodyElement::scrollWidth()
283 { 283 {
284 // Update the document's layout. 284 // Update the document's layout.
285 Document& document = this->document(); 285 Document& document = this->document();
286 document.updateLayoutIgnorePendingStylesheets(); 286 document.updateLayoutIgnorePendingStylesheets();
287 FrameView* view = document.view(); 287 FrameView* view = document.view();
288 return view ? adjustForZoom(view->contentsWidth(), &document) : 0; 288 return view ? adjustForZoom(view->contentsWidth(), &document) : 0;
289 } 289 }
290 290
291 } // namespace WebCore 291 } // namespace WebCore
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698