blob: 3b913c766a8e53680dc8d4cba7f73207f1e784f7 [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 int offsetLeft
* The distance from this element's left border to its offsetParent's left
* border.
* @description Checks expected offset value
*/
import "dart:html";
import "../../../Utils/expect.dart";
import "../../../Utils/async_utils.dart";
import "../testcommon.dart";
main() {
document.body.setInnerHtml('''
<div style="position: absolute; left: 10px; top: 10px" id="div1">
some
<div style="position: absolute; left: 50px; top: 60px" id="div2">
text
</div>
</div>''', treeSanitizer: new NullTreeSanitizer());
var div2 = document.body.querySelector('#div2');
var b = document.body;
Expect.equals(50, div2.offsetLeft);
}