dojox
Version:
Dojo eXtensions, a rollup of many useful sub-projects and varying states of maturity – from very stable and robust, to alpha and experimental. See individual projects contain README files for details.
31 lines (30 loc) • 717 B
HTML
<html>
<head>
<style>
.myClass {
display: none;
}
</style>
<!-- Commented out as a test that the load code for content pane does NOT include it
as script content.
<STYLE>
.myClass.myClass2 {
display: inline;
}
@import "remoteCss1.css";
</STYLE>
<link rel="stylesheet" type="text/css" href="remoteCss2.css" />
-->
<script>
//This sets a flag to indicate that the page has loaded and is checked
//in the testcase.
window.__remotePaneLoaded = true;
</script>
</head>
<body>
<span class="myClass myClass2" id="n1"></span>
<span class="myClass myClass3" id="n2"></span>
<span class="myClass myClass4" id="n3"></span>
Some simple content.
</body>
</html>