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

Side by Side Diff: third_party/WebKit/Source/core/dom/Element.h

Issue 2729373003: Bit-mask incorrectly removed first-line pseudo bit. (Closed)
Patch Set: Fixed issues. Created 3 years, 9 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
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) 2001 Peter Kelly (pmk@post.com) 4 * (C) 2001 Peter Kelly (pmk@post.com)
5 * (C) 2001 Dirk Mueller (mueller@kde.org) 5 * (C) 2001 Dirk Mueller (mueller@kde.org)
6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved. 6 * Copyright (C) 2003-2011, 2013, 2014 Apple Inc. All rights reserved.
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 883 matching lines...) Expand 10 before | Expand all | Expand 10 after
894 const AtomicString& value, 894 const AtomicString& value,
895 SynchronizationOfLazyAttribute); 895 SynchronizationOfLazyAttribute);
896 void appendAttributeInternal(const QualifiedName&, 896 void appendAttributeInternal(const QualifiedName&,
897 const AtomicString& value, 897 const AtomicString& value,
898 SynchronizationOfLazyAttribute); 898 SynchronizationOfLazyAttribute);
899 void removeAttributeInternal(size_t index, SynchronizationOfLazyAttribute); 899 void removeAttributeInternal(size_t index, SynchronizationOfLazyAttribute);
900 void attributeChangedFromParserOrByCloning(const QualifiedName&, 900 void attributeChangedFromParserOrByCloning(const QualifiedName&,
901 const AtomicString&, 901 const AtomicString&,
902 AttributeModificationReason); 902 AttributeModificationReason);
903 903
904 bool pseudoStyleCacheIsInvalid(const ComputedStyle* currentStyle, 904 void pseudoStyleCacheIsInvalid(const ComputedStyle* currentStyle,
905 ComputedStyle* newStyle); 905 ComputedStyle* newStyle);
906 906
907 void cancelFocusAppearanceUpdate(); 907 void cancelFocusAppearanceUpdate();
908 908
909 const ComputedStyle* virtualEnsureComputedStyle( 909 const ComputedStyle* virtualEnsureComputedStyle(
910 PseudoId pseudoElementSpecifier = PseudoIdNone) override { 910 PseudoId pseudoElementSpecifier = PseudoIdNone) override {
911 return ensureComputedStyle(pseudoElementSpecifier); 911 return ensureComputedStyle(pseudoElementSpecifier);
912 } 912 }
913 913
914 inline void updateCallbackSelectors(const ComputedStyle* oldStyle, 914 inline void updateCallbackSelectors(const ComputedStyle* oldStyle,
(...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after
1202 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1202 #define DECLARE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1203 static T* create(const QualifiedName&, Document&) 1203 static T* create(const QualifiedName&, Document&)
1204 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \ 1204 #define DEFINE_ELEMENT_FACTORY_WITH_TAGNAME(T) \
1205 T* T::create(const QualifiedName& tagName, Document& document) { \ 1205 T* T::create(const QualifiedName& tagName, Document& document) { \
1206 return new T(tagName, document); \ 1206 return new T(tagName, document); \
1207 } 1207 }
1208 1208
1209 } // namespace blink 1209 } // namespace blink
1210 1210
1211 #endif // Element_h 1211 #endif // Element_h
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698