diff options
Diffstat (limited to 'chrome/test/data/dom_automation/frames')
5 files changed, 34 insertions, 0 deletions
diff --git a/chrome/test/data/dom_automation/frames/frame1.html b/chrome/test/data/dom_automation/frames/frame1.html new file mode 100644 index 0000000..4e02aab --- /dev/null +++ b/chrome/test/data/dom_automation/frames/frame1.html @@ -0,0 +1,6 @@ +<html> +<body> +<iframe src="iframe1.html"></iframe> +<div>frame 1</div> +</body> +</html> diff --git a/chrome/test/data/dom_automation/frames/frame2.html b/chrome/test/data/dom_automation/frames/frame2.html new file mode 100644 index 0000000..d1e8bdf --- /dev/null +++ b/chrome/test/data/dom_automation/frames/frame2.html @@ -0,0 +1,6 @@ +<html> +<body> +<iframe src="iframe2.html"></iframe> +<div>frame 2</div> +</body> +</html> diff --git a/chrome/test/data/dom_automation/frames/iframe1.html b/chrome/test/data/dom_automation/frames/iframe1.html new file mode 100644 index 0000000..7fccbfd --- /dev/null +++ b/chrome/test/data/dom_automation/frames/iframe1.html @@ -0,0 +1,5 @@ +<html> +<body> +<div>iframe 1</div> +</body> +</html> diff --git a/chrome/test/data/dom_automation/frames/iframe2.html b/chrome/test/data/dom_automation/frames/iframe2.html new file mode 100644 index 0000000..908303e --- /dev/null +++ b/chrome/test/data/dom_automation/frames/iframe2.html @@ -0,0 +1,5 @@ +<html> +<body> +<div>iframe 2</div> +</body> +</html> diff --git a/chrome/test/data/dom_automation/frames/test.html b/chrome/test/data/dom_automation/frames/test.html new file mode 100644 index 0000000..004c3e9 --- /dev/null +++ b/chrome/test/data/dom_automation/frames/test.html @@ -0,0 +1,12 @@ +<html> +<head> +<script> + +</script> +</head> + +<frameset id="set" cols="25%,75%"> +<frame src="frame1.html"> +<frame src="frame2.html"> +</frameset> +</html> |