blob: 1c0e2d86d619e2b8975d6beab9dd2378c0bd9868 [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 crash. crbug.com/789263\n`);
await TestRunner.showPanel('elements');
await TestRunner.loadHTML(`
<!DOCTYPE html>
<style>
** { }
@supports (display: flex) { }
</style>
`);
TestRunner.completeTest();
})();