Changes between Initial Version and Version 1 of Ticket #7784, comment 9
- Timestamp:
- Jun 23, 2011, 11:07:17 AM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #7784, comment 9
initial v1 1 1 Not sure if this relates to this ticket but I was still getting "A parameter or an operation is not supported by the underlying object" code: "15" when loading a stylesheet in FF4. I am using 3.6.1 2 2 3 The problem was with "var k=i.cssRules| |i.rules;" I was also loading the instance through ajax.3 The problem was with "var k=i.cssRules| |i.rules;" I was also loading the instance through ajax. 4 4 5 5 Apparently in FF you can't load a stylesheet and access it in the same function. You some kind of yield in between. … … 17 17 } 18 18 19 var k=i.cssRules| |i.rules;19 var k=i.cssRules| |i.rules; 20 20 for(var l=0;l<k.length;l++){ 21 21 g.push(k[l].selectorText);