blob: d2251047bdbafc8eb7529498dc7aa0de141d39e3 [file] [log] [blame]
// Copyright 2017 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
(async function() {
TestRunner.addResult(`This test passes if it doesn't ASSERT.\n`);
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<style>
.absent {
background: #fff url(foo.png) no-repeat left 4px;
}
body {
background: #fff;
}
</style>
`);
TestRunner.completeTest();
})();