39 lines
899 B
HTML
39 lines
899 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<!--
|
|
Copyright 2010 The Closure Library Authors. All Rights Reserved.
|
|
|
|
Use of this source code is governed by the Apache License, Version 2.0.
|
|
See the COPYING file for details.
|
|
-->
|
|
<!--
|
|
-->
|
|
<head>
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<title>
|
|
Closure Unit Tests - goog.ui.ac.Renderer
|
|
</title>
|
|
<style type="text/css">
|
|
#viewport {
|
|
width: 400px;
|
|
height: 200px;
|
|
overflow: hidden; /* Suppress scroll bars to get consistent cross-browser resizing */
|
|
position: relative;
|
|
}
|
|
</style>
|
|
<script src="../../base.js">
|
|
</script>
|
|
<script>
|
|
goog.require('goog.ui.ac.RendererTest');
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<div id="someElement">Click target</div>
|
|
<div id="target">Target</div>
|
|
<div id="viewport">
|
|
Parent (viewport) element for some tests
|
|
<div id="viewportTarget">Target for viewport tests</div>
|
|
</div>
|
|
</body>
|
|
</html>
|