blob: eec4f20f1bdbb717d16a6f241adc82dce27e13b0 [file] [log] [blame]
/*
* Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion
* @description
*/
import "dart:html";
import "../../../Utils/expect.dart";
const String htmlEL = r'''
<span id="test" style="-webkit-writing-mode:vertical-lr"></span>
''';
void main() {
document.body.appendHtml(htmlEL);
var elt = document.getElementById('test');
Expect.equals("inline-block", elt.getComputedStyle().getPropertyValue("display"));
}