diff options
author | Imanol Fernandez <mortimergoro@gmail.com> | 2017-08-15 16:05:22 +0200 |
---|---|---|
committer | Imanol Fernandez <mortimergoro@gmail.com> | 2017-08-15 22:14:32 +0200 |
commit | 703962fe61d673536eb982b45795ae13748f0f6a (patch) | |
tree | c85f3cb5d55babab03d56dac8b0d10d588b0a0f9 /components/script/dom/canvasgradient.rs | |
parent | e9cbbc58cc9655a15bc603effabbd4a4ff62b454 (diff) | |
download | servo-703962fe61d673536eb982b45795ae13748f0f6a.tar.gz servo-703962fe61d673536eb982b45795ae13748f0f6a.zip |
Improve WebGL architecture.
Diffstat (limited to 'components/script/dom/canvasgradient.rs')
-rw-r--r-- | components/script/dom/canvasgradient.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/canvasgradient.rs b/components/script/dom/canvasgradient.rs index 64df591f760..3a0707ab5eb 100644 --- a/components/script/dom/canvasgradient.rs +++ b/components/script/dom/canvasgradient.rs @@ -2,7 +2,7 @@ * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ -use canvas_traits::{CanvasGradientStop, FillOrStrokeStyle, LinearGradientStyle, RadialGradientStyle}; +use canvas_traits::canvas::{CanvasGradientStop, FillOrStrokeStyle, LinearGradientStyle, RadialGradientStyle}; use cssparser::{Parser, ParserInput, RGBA}; use cssparser::Color as CSSColor; use dom::bindings::cell::DOMRefCell; |