forked from mirrors/gecko-dev
		
	 a48503b881
			
		
	
	
		a48503b881
		
	
	
	
	
		
			
			It seems @hyowon uploaded her canvas shadow patch faster than me; I've handled the color dependency a bit different, this way `gfx_traits` is not required by the script module. Source-Repo: https://github.com/servo/servo Source-Revision: c8c7bd900dde73d4fddafea8239f44440f1c863b
		
			
				
	
	
		
			74 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			Rust
		
	
	
	
	
	
| /* 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/. */
 | |
| 
 | |
| #![feature(alloc)]
 | |
| #![feature(box_syntax)]
 | |
| #![feature(collections)]
 | |
| #![feature(core)]
 | |
| #![feature(custom_attribute)]
 | |
| #![feature(plugin)]
 | |
| #![feature(std_misc)]
 | |
| 
 | |
| #![deny(unsafe_code)]
 | |
| #![allow(non_snake_case)]
 | |
| 
 | |
| #![doc="The script crate contains all matters DOM."]
 | |
| 
 | |
| #![plugin(string_cache_plugin)]
 | |
| #![plugin(plugins)]
 | |
| 
 | |
| #[macro_use]
 | |
| extern crate log;
 | |
| 
 | |
| #[macro_use] extern crate bitflags;
 | |
| extern crate core;
 | |
| extern crate devtools_traits;
 | |
| extern crate cssparser;
 | |
| extern crate geom;
 | |
| extern crate html5ever;
 | |
| extern crate encoding;
 | |
| extern crate fnv;
 | |
| extern crate hyper;
 | |
| extern crate js;
 | |
| extern crate libc;
 | |
| extern crate msg;
 | |
| extern crate net_traits;
 | |
| extern crate num;
 | |
| extern crate png;
 | |
| extern crate rustc_serialize;
 | |
| extern crate time;
 | |
| extern crate canvas;
 | |
| extern crate canvas_traits;
 | |
| extern crate profile_traits;
 | |
| extern crate script_traits;
 | |
| extern crate selectors;
 | |
| extern crate smallvec;
 | |
| extern crate util;
 | |
| extern crate websocket;
 | |
| #[macro_use]
 | |
| extern crate style;
 | |
| extern crate unicase;
 | |
| extern crate url;
 | |
| extern crate uuid;
 | |
| extern crate string_cache;
 | |
| extern crate offscreen_gl_context;
 | |
| 
 | |
| pub mod cors;
 | |
| pub mod document_loader;
 | |
| 
 | |
| #[macro_use]
 | |
| pub mod dom;
 | |
| 
 | |
| pub mod parse;
 | |
| 
 | |
| pub mod layout_interface;
 | |
| mod network_listener;
 | |
| pub mod page;
 | |
| pub mod script_task;
 | |
| mod timers;
 | |
| pub mod textinput;
 | |
| pub mod clipboard_provider;
 | |
| mod devtools;
 | |
| mod horribly_inefficient_timers;
 | |
| mod webdriver_handlers;
 |