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

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

Issue 2740823005: Track lastTextNode during rebuildLayoutTree. (Closed)
Patch Set: Missing reset of lastTextNode for elements. 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
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef StyleReattachData_h
6 #define StyleReattachData_h
7
8 namespace blink {
9
10 struct StyleReattachData {
11 DISALLOW_NEW_EXCEPT_PLACEMENT_NEW();
12 DEFINE_INLINE_TRACE() { visitor->trace(nextTextSibling); }
13
14 RefPtr<ComputedStyle> computedStyle;
15 Member<Text> nextTextSibling;
16 };
17
18 } // namespace blink
19
20 #endif // StyleReattachData_h
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/core/dom/Element.cpp ('k') | third_party/WebKit/Source/core/dom/Text.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698