gecko/browser/devtools/tilt/test/browser_tilt_utils03.js

19 lines
461 B
JavaScript

/* Any copyright is dedicated to the Public Domain.
http://creativecommons.org/publicdomain/zero/1.0/ */
"use strict";
function test() {
let dom = TiltUtils.DOM;
is(dom.parentNode, null,
"The parent node should not be initially set.");
dom.parentNode = {};
ok(dom.parentNode,
"The parent node should now be set.");
TiltUtils.clearCache();
is(dom.parentNode, null,
"The parent node should not be set after clearing the cache.");
}