Revert bulk of changeset 67ddbe030ab6 (originally for bug 457809) now that bug 253354 is fixed.

This commit is contained in:
L. David Baron 2009-12-31 12:49:22 -05:00
Родитель d18d248117
Коммит 485c4872af
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -23,13 +23,6 @@ https://bugzilla.mozilla.org/show_bug.cgi?id=416896
<script class="testbody" type="text/javascript">
/** Test for Bug 416896 **/
// Ensure all of our sheets have unique inners and trigger a rule cascade
// reconstruct for each of them, so that all the rules the inspector APIs see
// will have the right parents. This is basicaly working around bug 253354.
for (var sheetIdx = 0; sheetIdx < document.styleSheets.length; ++sheetIdx) {
document.styleSheets[sheetIdx].insertRule("dummy {}", 0);
}
var inlineSheet = $("i").sheet;
isnot(inlineSheet, null, "Should have sheet here");