diff options
author | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-02-28 00:43:09 +0100 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2018-02-28 12:04:47 +0100 |
commit | 15b0a3203574330a82188699a72e99497bd6929c (patch) | |
tree | a4f0a6ec71c501fc47db44d91194b10cd742930f /components/script/dom/webidls/CSSStyleDeclaration.webidl | |
parent | 220cc9ba650b49b3ee8e9eea810e23dfa9a118d0 (diff) | |
download | servo-15b0a3203574330a82188699a72e99497bd6929c.tar.gz servo-15b0a3203574330a82188699a72e99497bd6929c.zip |
style: Put all the multicol props under the same pref for Servo.
Otherwise it becomes insane.
Diffstat (limited to 'components/script/dom/webidls/CSSStyleDeclaration.webidl')
-rw-r--r-- | components/script/dom/webidls/CSSStyleDeclaration.webidl | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/components/script/dom/webidls/CSSStyleDeclaration.webidl b/components/script/dom/webidls/CSSStyleDeclaration.webidl index 1bb20990494..760f3461f0a 100644 --- a/components/script/dom/webidls/CSSStyleDeclaration.webidl +++ b/components/script/dom/webidls/CSSStyleDeclaration.webidl @@ -387,19 +387,19 @@ partial interface CSSStyleDeclaration { [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString imageRendering; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString image-rendering; - [Pref="layout.column-count.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] + [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString columnCount; - [Pref="layout.column-count.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] + [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString column-count; - [Pref="layout.column-width.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] + [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString columnWidth; - [Pref="layout.column-width.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] + [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString column-width; [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString columns; - [Pref="layout.column-gap.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] + [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString columnGap; - [Pref="layout.column-gap.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] + [Pref="layout.columns.enabled", CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString column-gap; [CEReactions, SetterThrows, TreatNullAs=EmptyString] attribute DOMString transition; |