forked from mirrors/gecko-dev
		
	 f4d38ea265
			
		
	
	
		f4d38ea265
		
	
	
	
	
		
			
			<!-- Please describe your changes on the following line: --> --- <!-- 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 - [X] These changes fix (partially) #12415 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [X] These changes do not require tests because they don't add any feature <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> * HTMLTableCaptionElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablecaptionelement)] * HTMLTableCellElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablecellelement)] * HTMLTableColElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablecolelement)] * HTMLTableElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltableelement)] * HTMLTableRowElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablerowelement)] * HTMLTableSectionElement.webidl [[spec](https://html.spec.whatwg.org/multipage/#htmltablesectionelement)] Source-Repo: https://github.com/servo/servo Source-Revision: 7c8bd58c4a53077af564f8024179732dffa15b39
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			908 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			908 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/#htmltablerowelement
 | |
| interface HTMLTableRowElement : HTMLElement {
 | |
|   readonly attribute long rowIndex;
 | |
|   readonly attribute long sectionRowIndex;
 | |
|   readonly attribute HTMLCollection cells;
 | |
|   [Throws]
 | |
|   HTMLElement insertCell(optional long index = -1);
 | |
|   [Throws]
 | |
|   void deleteCell(long index);
 | |
| 
 | |
|   // also has obsolete members
 | |
| };
 | |
| 
 | |
| // https://html.spec.whatwg.org/multipage/#HTMLTableRowElement-partial
 | |
| partial interface HTMLTableRowElement {
 | |
|   //         attribute DOMString align;
 | |
|   //         attribute DOMString ch;
 | |
|   //         attribute DOMString chOff;
 | |
|   //         attribute DOMString vAlign;
 | |
| 
 | |
|   [TreatNullAs=EmptyString] attribute DOMString bgColor;
 | |
| };
 |