summaryrefslogtreecommitdiffstats
path: root/WebCore/rendering/style/ShadowData.h
diff options
context:
space:
mode:
authorBen Murdoch <benm@google.com>2009-08-11 17:01:47 +0100
committerBen Murdoch <benm@google.com>2009-08-11 18:21:02 +0100
commit0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5 (patch)
tree2943df35f62d885c89d01063cc528dd73b480fea /WebCore/rendering/style/ShadowData.h
parent7e7a70bfa49a1122b2597a1e6367d89eb4035eca (diff)
downloadexternal_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.zip
external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.gz
external_webkit-0bf48ef3be53ddaa52bbead65dfd75bf90e7a2b5.tar.bz2
Merge in WebKit r47029.
Diffstat (limited to 'WebCore/rendering/style/ShadowData.h')
-rw-r--r--WebCore/rendering/style/ShadowData.h20
1 files changed, 14 insertions, 6 deletions
diff --git a/WebCore/rendering/style/ShadowData.h b/WebCore/rendering/style/ShadowData.h
index dac2b18..f4061f2 100644
--- a/WebCore/rendering/style/ShadowData.h
+++ b/WebCore/rendering/style/ShadowData.h
@@ -2,7 +2,7 @@
* Copyright (C) 2000 Lars Knoll (knoll@kde.org)
* (C) 2000 Antti Koivisto (koivisto@kde.org)
* (C) 2000 Dirk Mueller (mueller@kde.org)
- * Copyright (C) 2003, 2005, 2006, 2007, 2008 Apple Inc. All rights reserved.
+ * Copyright (C) 2003, 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
* Copyright (C) 2006 Graham Dennis (graham.dennis@gmail.com)
*
* This library is free software; you can redistribute it and/or
@@ -29,6 +29,8 @@
namespace WebCore {
+enum ShadowStyle { Normal, Inset };
+
// This struct holds information about shadows for the text-shadow and box-shadow properties.
struct ShadowData {
@@ -36,15 +38,19 @@ struct ShadowData {
: x(0)
, y(0)
, blur(0)
+ , spread(0)
+ , style(Normal)
, next(0)
{
}
- ShadowData(int _x, int _y, int _blur, const Color& _color)
- : x(_x)
- , y(_y)
- , blur(_blur)
- , color(_color)
+ ShadowData(int x, int y, int blur, int spread, ShadowStyle style, const Color& color)
+ : x(x)
+ , y(y)
+ , blur(blur)
+ , spread(spread)
+ , style(style)
+ , color(color)
, next(0)
{
}
@@ -62,6 +68,8 @@ struct ShadowData {
int x;
int y;
int blur;
+ int spread;
+ ShadowStyle style;
Color color;
ShadowData* next;
};