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

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

Issue 16599003: :hover style not applied on hover if its display property is different from original style's (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Patch (fixed test that was expected to fail and is now passing) Created 7 years, 6 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
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/svg/SVGImageElement.cpp » ('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, 2008 Nikolas Zimmermann <zimmermann@kde.org> 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org>
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> 3 * Copyright (C) 2004, 2005, 2006 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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 virtual bool isValid() const { return SVGTests::isValid(); } 47 virtual bool isValid() const { return SVGTests::isValid(); }
48 virtual bool supportsFocus() const { return true; } 48 virtual bool supportsFocus() const { return true; }
49 49
50 bool isSupportedAttribute(const QualifiedName&); 50 bool isSupportedAttribute(const QualifiedName&);
51 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE; 51 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR IDE;
52 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE; 52 virtual bool isPresentationAttribute(const QualifiedName&) const OVERRIDE;
53 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) OVERRIDE; 53 virtual void collectStyleForPresentationAttribute(const QualifiedName&, cons t AtomicString&, MutableStylePropertySet*) OVERRIDE;
54 virtual void svgAttributeChanged(const QualifiedName&); 54 virtual void svgAttributeChanged(const QualifiedName&);
55 55
56 virtual void attach(); 56 virtual void attach(const AttachContext& = AttachContext()) OVERRIDE;
57 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; 57 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE;
58 58
59 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); 59 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*);
60 60
61 virtual const AtomicString& imageSourceURL() const OVERRIDE; 61 virtual const AtomicString& imageSourceURL() const OVERRIDE;
62 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; 62 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const;
63 63
64 virtual bool haveLoadedRequiredResources(); 64 virtual bool haveLoadedRequiredResources();
65 65
66 virtual bool selfHasRelativeLengths() const; 66 virtual bool selfHasRelativeLengths() const;
(...skipping 13 matching lines...) Expand all
80 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); } 80 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe atures(this); }
81 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); } 81 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired Extensions(this); }
82 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); } 82 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua ge(this); }
83 83
84 SVGImageLoader m_imageLoader; 84 SVGImageLoader m_imageLoader;
85 }; 85 };
86 86
87 } // namespace WebCore 87 } // namespace WebCore
88 88
89 #endif 89 #endif
OLDNEW
« no previous file with comments | « Source/core/page/DragController.cpp ('k') | Source/core/svg/SVGImageElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698