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

Side by Side Diff: Source/core/rendering/RegionOversetState.h

Issue 17176018: [CSS Regions] Add new regionOversetChange event (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Integrated styling fixes 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/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderBlock.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 * (C) 1999-2003 Lars Knoll (knoll@kde.org)
3 * Copyright (C) 2004, 2006 Apple Computer, Inc.
4 *
5 * This library is free software; you can redistribute it and/or 2 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Library General Public 3 * modify it under the terms of the GNU Library General Public
7 * License as published by the Free Software Foundation; either 4 * License as published by the Free Software Foundation; either
8 * version 2 of the License, or (at your option) any later version. 5 * version 2 of the License, or (at your option) any later version.
9 * 6 *
10 * This library is distributed in the hope that it will be useful, 7 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Library General Public License for more details. 10 * Library General Public License for more details.
14 * 11 *
15 * You should have received a copy of the GNU Library General Public License 12 * You should have received a copy of the GNU Library General Public License
16 * along with this library; see the file COPYING.LIB. If not, write to 13 * along with this library; see the file COPYING.LIB. If not, write to
17 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 14 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
18 * Boston, MA 02110-1301, USA. 15 * Boston, MA 02110-1301, USA.
16 *
19 */ 17 */
20 #include "config.h" 18
21 #include "core/css/StyleSheet.h" 19 #ifndef RegionOversetState_h
20 #define RegionOversetState_h
22 21
23 namespace WebCore { 22 namespace WebCore {
24 23
25 StyleSheet::~StyleSheet() 24 enum RegionOversetState {
26 { 25 RegionUndefined,
27 } 26 RegionEmpty,
27 RegionFit,
28 RegionOverset
29 };
28 30
29 } 31 } // namespace WebCore
32
33 #endif // RegionOversetState_h
OLDNEW
« no previous file with comments | « Source/core/inspector/InspectorCSSAgent.cpp ('k') | Source/core/rendering/RenderBlock.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698