blob: 2d6861eaff484d3969334503d815252477364f7c [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.
*/
/**
* @description When contentEditable is missing, it maps to "inherit" state
* and the element is NOT editable if its nearest ancestor is NOT.
*/
import "dart:html";
import "../../../../Utils/expect.dart";
import "../../../testcommon.dart";
main() {
document.body.setInnerHtml('''
<p id="description"></p>
<div id="console"></div>
<div id="result"></div>
<div id="div" contentEditable="false">
<div>
<div>
<p id="p"></p>
</div>
</div>
</div>
''', treeSanitizer: new NullTreeSanitizer());
shouldBe(document.getElementById("p").contentEditable, "inherit");
shouldBe(document.getElementById("p").isContentEditable, false);
var p = document.getElementById('p');
shouldBe(p.getComputedStyle().getPropertyValue("-webkit-user-modify"),
"read-only");
document.getElementById("div").style.display= 'none';
}