1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"> |
---|
2 | <html><head> |
---|
3 | <title>IFRAME sized according to contents</title> |
---|
4 | </head> |
---|
5 | <body> |
---|
6 | |
---|
7 | <p>FAILED (This TC requires JavaScript enabled)</p> |
---|
8 | |
---|
9 | <iframe width="0" height="0" frameborder="0" scrolling="no" style="position: absolute; z-index: 10000" src="javascript:void(0)"></iframe> |
---|
10 | |
---|
11 | |
---|
12 | <script type="text/javascript"> |
---|
13 | |
---|
14 | function test(){ |
---|
15 | var log=document.getElementsByTagName('p')[0].firstChild, iframe=document.getElementsByTagName('iframe')[0]; |
---|
16 | oDocument=iframe.contentDocument; |
---|
17 | oDocument.open() ; |
---|
18 | oDocument.write( '<html><head><\/head><body style="margin:0px;padding:0px;"><\/body><\/html>' ) ; |
---|
19 | oDocument.close() ; |
---|
20 | |
---|
21 | var MainNode = oDocument.body.appendChild( oDocument.createElement('DIV') ) ; |
---|
22 | MainNode.style.cssFloat = this.IsRTL ? 'right' : 'left' ; |
---|
23 | var _PanelBox = MainNode.appendChild( iframe.contentDocument.createElement( 'DIV' ) ) ; |
---|
24 | _PanelBox.className = 'SC_Panel' ; |
---|
25 | _PanelBox.style.width = '150px' ; |
---|
26 | _PanelBox.innerHTML = '<table cellpadding="0" cellspacing="0" width="100%" style="TABLE-LAYOUT: fixed"><tr><td nowrap></td></tr></table>' ; |
---|
27 | var _ItemsHolderEl = _PanelBox.getElementsByTagName('TD')[0] ; |
---|
28 | var oDiv = _ItemsHolderEl.appendChild( iframe.contentDocument.createElement( 'DIV' ) ) ; |
---|
29 | oDiv.className = oDiv.originalClass = 'SC_Item' ; |
---|
30 | oDiv.innerHTML = '<b>Bold</b>' ; |
---|
31 | oDiv.FCKItemID = 'Bold' ; |
---|
32 | oDiv.Selected = false ; |
---|
33 | _AppendStyleSheet( iframe.contentDocument, 'http://www.fckeditor.net/nightly/fckeditor/editor/skins/default/fck_editor.css' ); |
---|
34 | log.data=iframe.contentDocument.body.firstChild.offsetWidth+'x'+iframe.contentDocument.body.firstChild.offsetHeight; |
---|
35 | iframe.style.width=iframe.contentDocument.body.firstChild.offsetWidth+'px'; |
---|
36 | iframe.style.height=iframe.contentDocument.body.firstChild.offsetHeight+'px'; |
---|
37 | } |
---|
38 | onload=test; |
---|
39 | |
---|
40 | function _AppendStyleSheet ( documentElement, cssFileUrl ) |
---|
41 | { |
---|
42 | var e = documentElement.createElement( 'LINK' ) ; |
---|
43 | e.rel = 'stylesheet' ; |
---|
44 | e.type = 'text/css' ; |
---|
45 | e.href = cssFileUrl ; |
---|
46 | documentElement.getElementsByTagName("HEAD")[0].appendChild( e ) ; |
---|
47 | return e ; |
---|
48 | } |
---|
49 | |
---|
50 | </script> |
---|
51 | |
---|
52 | </body></html> |
---|
53 | |
---|