| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 | <!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" />  <meta charset="UTF-8" />  <title>   Closure Unit Tests - goog.ui.ac.Renderer  </title>  <style type="text/css">    #widthProvider {      width: 100px;    }    #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="widthProvider">Providing width</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>
 |