chromium/third_party/blink/web_tests/http/tests/devtools/elements/styles-4/supports-rule-after-invalid-selector-rule-crash.js

// Copyright 2017 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

import {TestRunner} from 'test_runner';

(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();
})();