Description |
Pass |
Bug Number |
Actual Result |
Expected Result |
Read document.styleSheets with three stylesheets
| failed | Bug report required
| [object StyleSheetList]
| [xpconnect wrapped StyleSheetList]
|
Read document.styleSheets.length with three stylesheets
| failed | Bug report required
| 2
| 3
|
Read document.styleSheets.item(-1) with three stylesheets
| passed
| null
| null
|
Read document.styleSheets.item(Infinity) with three stylesheets
| failed | Bug report required
| [object CSSStyleSheet]
| Exception Thrown: "Parameter is not a number" code: "1005"
|
Read document.styleSheets.item(NaN) with three stylesheets
| failed | Bug report required
| [object CSSStyleSheet]
| Exception Thrown: "Parameter is not a number" code: "1005"
|
Read document.styleSheets.item('hah!') with three stylesheets
| failed | Bug report required
| [object CSSStyleSheet]
| Exception Thrown: "Parameter is not a number" code: "1005"
|
Read document.styleSheets.item(0) (embedded <style> element)
| failed | Bug report required
| [object CSSStyleSheet]
| [xpconnect wrapped CSSStyleSheet]
|
Read document.styleSheets.item(1) (<meta> link header to valid file)
| failed | Bug report required
| [object CSSStyleSheet]
| [xpconnect wrapped CSSStyleSheet]
|
Read document.styleSheets.item(2) (<link> element to non-existent file)
| failed | Bug report required
| null
| [xpconnect wrapped CSSStyleSheet]
|
Read document.styleSheets.item(3) with three stylesheets
| passed
| null
| null
|