diff options
author | bors-servo <metajack+bors@gmail.com> | 2015-02-22 20:33:45 -0700 |
---|---|---|
committer | bors-servo <metajack+bors@gmail.com> | 2015-02-22 20:33:45 -0700 |
commit | 2e1adb3fa670504fb0fedaa517f312ba233bf67b (patch) | |
tree | b82db2b6f4cd23dd332224d3f4fd7139d58ee429 /components/script/dom/canvaspattern.rs | |
parent | 21a6633898d244595dc3bcf8b10ed859bca96e2e (diff) | |
parent | 55a0ee6ec75960879c20aea7d4b68a8bbdda1560 (diff) | |
download | servo-2e1adb3fa670504fb0fedaa517f312ba233bf67b.tar.gz servo-2e1adb3fa670504fb0fedaa517f312ba233bf67b.zip |
auto merge of #5016 : jdm/servo/canvas-for-svg, r=jdm
the tiger.
Rebased from #4623.
Diffstat (limited to 'components/script/dom/canvaspattern.rs')
-rw-r--r-- | components/script/dom/canvaspattern.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/components/script/dom/canvaspattern.rs b/components/script/dom/canvaspattern.rs new file mode 100644 index 00000000000..f1010bf6f53 --- /dev/null +++ b/components/script/dom/canvaspattern.rs @@ -0,0 +1,12 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * 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 dom::bindings::utils::Reflector; + +#[dom_struct] +pub struct CanvasPattern { + reflector_: Reflector, +} + + |