blob: a657efd5e074ff8734fecde5d2e90a13d99b79ea [file] [log] [blame]
<!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" />
<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>