22 lines
575 B
Plaintext
22 lines
575 B
Plaintext
page.title=Runtime API Reference
|
|
parent.title=Computation
|
|
parent.link=index.html
|
|
|
|
@jd:body
|
|
|
|
<script language="JavaScript">
|
|
|
|
function autoResize(element){
|
|
var newheight;
|
|
var newwidth;
|
|
|
|
newheight = element.contentWindow.document.body.scrollHeight + 20;
|
|
newwidth = element.contentWindow.document.body.scrollWidth;
|
|
element.height = (newheight) + "px";
|
|
element.width = (newwidth) + "px";
|
|
}
|
|
</script>
|
|
|
|
|
|
<iframe SRC="{@docRoot}reference/renderscript/index.html" width="100%" id="iframe" marginheight="0" frameborder="0" onLoad="autoResize(this);"></iframe>
|