aboutsummaryrefslogtreecommitdiffstats
path: root/components/script
diff options
context:
space:
mode:
authorJinwoo Song <jinwoo7.song@samsung.com>2015-05-15 16:45:13 +0900
committerJinwoo Song <jinwoo7.song@samsung.com>2015-05-16 09:43:46 +0900
commita51d5de8608cbb5c0aae22b43f6ba53c6497a36f (patch)
tree1883acfb776e168f2822a9a9afa89c09c74e24c9 /components/script
parent09f5648153d9817aa4c89153030f69bf45ee7283 (diff)
downloadservo-a51d5de8608cbb5c0aae22b43f6ba53c6497a36f.tar.gz
servo-a51d5de8608cbb5c0aae22b43f6ba53c6497a36f.zip
Implement 'background-clip' property in CSS3 Background
This property determines the background painting area, which determines the area within which the background is painted. Spec: http://dev.w3.org/csswg/css-backgrounds-3/#background-clip Fixes #6066.
Diffstat (limited to 'components/script')
-rw-r--r--components/script/dom/webidls/CSSStyleDeclaration.webidl1
1 files changed, 1 insertions, 0 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl
index 57b3e9f43cc..d85dfc8f8ca 100644
--- a/components/script/dom/webidls/CSSStyleDeclaration.webidl
+++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl
@@ -40,6 +40,7 @@ partial interface CSSStyleDeclaration {
[TreatNullAs=EmptyString] attribute DOMString backgroundAttachment;
[TreatNullAs=EmptyString] attribute DOMString backgroundSize;
[TreatNullAs=EmptyString] attribute DOMString backgroundOrigin;
+ [TreatNullAs=EmptyString] attribute DOMString backgroundClip;
[TreatNullAs=EmptyString] attribute DOMString border;
[TreatNullAs=EmptyString] attribute DOMString borderColor;