blob: 8626469a2f96935e16fe53ffe5fc8e3d62f1c556 [file] [log] [blame]
<html>
<script>
if (window.testRunner)
testRunner.dumpAsText();
</script>
<body id="body" contenteditable>
<!-- this test should show that the iframe has a writable AXValue because it has a
contenteditable attribute -->
Text
<div id="result"></div>
<script>
if (window.accessibilityController) {
var result = document.getElementById("result");
var body = document.getElementById("body");
body.focus();
body = accessibilityController.focusedElement;
result.innerText += "Is settable: " + body.isAttributeSettable("AXValue") + "\n\n";
}
</script>
</body>
</html>