Ticket #11121: test_workaround.html

File test_workaround.html, 680 bytes (added by Jakub Ś, 10 years ago)
Line 
1<!DOCTYPE html>
2<!--
3Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
4For licensing, see LICENSE.html or http://ckeditor.com/license
5-->
6<html>
7<head>
8        <title>Replace Textarea by Code in iframe</title>
9        <meta charset="utf-8">
10        <style>
11        body, html, div {
12                height: 100%;
13                width: 100%;
14                margin: 0 auto;                 
15        }
16       
17        div {
18                overflow: hidden;
19        }
20       
21        </style>
22</head>
23<body>
24        <div> 
25                <iframe id="myframe" style="position:relative; left:-3000px;" src="./replacebyclass.html" width="100%" height="100%"></iframe> 
26        </div> 
27        <script>
28        window.setTimeout(function(){
29                window.document.getElementById('myframe').style.left='0';
30                },3000);
31        </script>
32</body>
33</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy