| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 | <!DOCTYPE html><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.--><!----> <head>  <meta http-equiv="X-UA-Compatible" content="IE=edge" />  <meta charset="UTF-8" />  <title>   Closure Unit Tests - goog.testing.ui.style  </title>  <script src="../../base.js">  </script>  <script>    goog.require('goog.testing.ui.styleTest');  </script> </head> <body>  <div id="correct">    <div class="one two three">      <div class="four five"></div>      <div class="six seven content">        <div></div>        Blah      </div>    </div>  </div>  <div id="missing-class">    <div class="one two three">      <div class="five"></div>      <div class="six seven content">        <div></div>        Blah      </div>    </div>  </div>  <div id="extra-class">    <div class="one two three">      <div class="four five five-point-five"></div>      <div class="six seven content">        <div></div>        Blah      </div>    </div>  </div>  <div id="missing-child">    <div class="one two three">      <div class="six seven content">        <div></div>        Blah      </div>    </div>  </div>  <div id="extra-child">    <div class="one two three">      <div class="four five">        <div class="five-point-five"></div>      </div>      <div class="six seven content">        <div></div>        Blah      </div>    </div>  </div></body></html>
 |