| 12345678910111213141516171819202122232425262728 | <html> <!--Copyright 2008 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.@author nicksantos@google.com (Nick Santos)--> <head>  <meta http-equiv="X-UA-Compatible" content="IE=edge" />  <meta charset="UTF-8" />  <title>   goog.editor.ClickToEditWrapper Unit Tests  </title>  <script src="../base.js">  </script>  <script>   goog.require('goog.editor.ClickToEditWrapperTest');  </script> </head> <body>  <div id="root">   <div id="testField">I am text with a    <a id="testAnchor" href="http://www.google.com">link</a>.</div>  </div> </body></html>
 |