blob: 352f03519ea0d0fb1d9af31ce3fb11b7d260d8e2 [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 Rectangle get offset
* Gets the offset of this element relative to its offsetParent.
* @description Checks expected offset value
*/
import "dart:html";
import "../../../Utils/expect.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');
Expect.equals(50, div2?.offset.left, 'left');
Expect.equals(60, div2?.offset.top, 'top');
}