forked from mirrors/gecko-dev
		
	<!-- Please describe your changes on the following line: --> Reviewed webidl interfaces: Location.webidl MediaError.webidl MimeTypeArray.webidl MimeType.webidl PageTransitionEvent.webidl PluginArray.webidl Plugin.webidl PopStateEvent.webidl --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [X] `./mach build -d` does not report any errors - [X] `./mach test-tidy` does not report any errors - [ ] These changes fix #12415 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> Source-Repo: https://github.com/servo/servo Source-Revision: efff0a94180a61d58e3342ef89c4d22ef942bda1
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			520 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			520 B
		
	
	
	
		
			Text
		
	
	
	
	
	
/* 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/. */
 | 
						|
 | 
						|
// https://html.spec.whatwg.org/multipage/#pluginarray
 | 
						|
[LegacyUnenumerableNamedProperties, Exposed=Window]
 | 
						|
interface PluginArray {
 | 
						|
  void refresh(optional boolean reload = false);
 | 
						|
  readonly attribute unsigned long length;
 | 
						|
  getter Plugin? item(unsigned long index);
 | 
						|
  getter Plugin? namedItem(DOMString name);
 | 
						|
};
 |