blob: 07ab20a2de9daf105a9c5bcf410d85f03981b9e5 [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 final bool isContentEditable
* Indicates whether or not the content of the element can be edited. Read only.
* WHATWG: The contenteditable attribute is an enumerated attribute whose
* keywords are the empty string, true, and false. The empty string and the
* true keyword map to the true state. The false keyword maps to the false
* state. In addition, there is a third state, the inherit state, which is the
* missing value default (and the invalid value default).
* @description Checks expected attribute settings
*/
import "dart:html";
import "../../../Utils/expect.dart";
import "../testcommon.dart";
main() {
var x =
new Element.html('<div></div>', treeSanitizer: new NullTreeSanitizer());
Expect.isFalse(x.isContentEditable, 'default');
x = new Element.html('<div contenteditable="false"></div>',
treeSanitizer: new NullTreeSanitizer());
Expect.isFalse(x.isContentEditable, 'explicit false');
x = new Element.html('<div contenteditable="true"></div>',
treeSanitizer: new NullTreeSanitizer());
Expect.isTrue(x.isContentEditable, 'explicit true');
x = new Element.html('<div contenteditable=""></div>',
treeSanitizer: new NullTreeSanitizer());
Expect.isTrue(x.isContentEditable, 'empty string is true');
}