blob: d4506dd8ae59740840a60a05e263203d9068161d [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(`Test supported CSS properties.\n`);
await TestRunner.showPanel('elements');
var marginLonghands = SDK.cssMetadata().longhands('margin');
marginLonghands.sort();
TestRunner.addResult('Margin longhands: ' + marginLonghands.join(', '));
TestRunner.completeTest();
})();