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

Side by Side Diff: Source/core/svg/SVGSVGElement.h

Issue 20670002: REGRESSION: Click on focused link should not remove focus on it. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: typo Created 7 years, 4 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
« no previous file with comments | « Source/core/svg/SVGRectElement.h ('k') | Source/core/svg/SVGStyledElement.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006, 2007, 2010 Rob Buis <buis@kde.org>
4 * 4 *
5 * This library is free software; you can redistribute it and/or 5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 6 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 7 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 8 * version 2 of the License, or (at your option) any later version.
9 * 9 *
10 * This library is distributed in the hope that it will be useful, 10 * This library is distributed in the hope that it will be useful,
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 public SVGExternalResourcesRequired, 43 public SVGExternalResourcesRequired,
44 public SVGFitToViewBox, 44 public SVGFitToViewBox,
45 public SVGZoomAndPan { 45 public SVGZoomAndPan {
46 public: 46 public:
47 static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*); 47 static PassRefPtr<SVGSVGElement> create(const QualifiedName&, Document*);
48 48
49 using SVGGraphicsElement::ref; 49 using SVGGraphicsElement::ref;
50 using SVGGraphicsElement::deref; 50 using SVGGraphicsElement::deref;
51 51
52 virtual bool isValid() const { return SVGTests::isValid(); } 52 virtual bool isValid() const { return SVGTests::isValid(); }
53 virtual bool supportsFocus() const { return true; } 53 virtual bool supportsFocus() const OVERRIDE { return hasFocusEventListeners( ); }
54 54
55 // 'SVGSVGElement' functions 55 // 'SVGSVGElement' functions
56 const AtomicString& contentScriptType() const; 56 const AtomicString& contentScriptType() const;
57 void setContentScriptType(const AtomicString& type); 57 void setContentScriptType(const AtomicString& type);
58 58
59 const AtomicString& contentStyleType() const; 59 const AtomicString& contentStyleType() const;
60 void setContentStyleType(const AtomicString& type); 60 void setContentStyleType(const AtomicString& type);
61 61
62 SVGRect viewport() const; 62 SVGRect viewport() const;
63 63
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 inline SVGSVGElement* toSVGSVGElement(Node* node) 181 inline SVGSVGElement* toSVGSVGElement(Node* node)
182 { 182 {
183 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isSVGElement()); 183 ASSERT_WITH_SECURITY_IMPLICATION(!node || node->isSVGElement());
184 ASSERT_WITH_SECURITY_IMPLICATION(!node || toSVGElement(node)->isSVGSVGElemen t()); 184 ASSERT_WITH_SECURITY_IMPLICATION(!node || toSVGElement(node)->isSVGSVGElemen t());
185 return static_cast<SVGSVGElement*>(node); 185 return static_cast<SVGSVGElement*>(node);
186 } 186 }
187 187
188 } // namespace WebCore 188 } // namespace WebCore
189 189
190 #endif 190 #endif
OLDNEW
« no previous file with comments | « Source/core/svg/SVGRectElement.h ('k') | Source/core/svg/SVGStyledElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698