source: other-projects/nz-flag-design/trunk/design-2d/Original editor.method.ac/test/all_tests.html@ 29468

Last change on this file since 29468 was 29468, checked in by sjs49, 9 years ago

Initial commit for editor.method.ac for flag design

  • Property svn:executable set to *
File size: 1.5 KB
Line 
1<!DOCTYPE html>
2<html>
3<head>
4 <title>All SVG-edit Tests</title>
5</head>
6<body>
7 <h1>All SVG-edit Tests</h1>
8 <p>This file frames all SVG-edit test pages. This should only include tests known to work. These tests are known to pass 100% in the following: Firefox 3.6, Chrome 7, IE9 Preview 6 (1.9.8006.6000), Opera 10.63. If a test is broken in this page, it is possible that <em>YOU</em> broke it. Please do not submit code that breaks any of these tests.</p>
9 <iframe src='svgtransformlist_test.html' width='100%' height='70' scrolling='no'></iframe>
10 <iframe src='contextmenu_test.html' width='100%' height='70' scrolling='no'></iframe>
11 <iframe src='math_test.html' width='100%' height='70' scrolling='no'></iframe>
12 <iframe src='svgutils_test.html' width='100%' height='70' scrolling='no'></iframe>
13 <iframe src='history_test.html' width='100%' height='70' scrolling='no'></iframe>
14 <iframe src='select_test.html' width='100%' height='70' scrolling='no'></iframe>
15 <iframe src='draw_test.html' width='100%' height='70' scrolling='no'></iframe>
16 <iframe src='units_test.html' width='100%' height='70' scrolling='no'></iframe>
17 <iframe src='path_test.html' width='100%' height='70' scrolling='no'></iframe>
18</body>
19<script>
20window.setTimeout(function() {
21 var iframes = document.getElementsByTagName('iframe');
22 for (var i = 0, len = iframes.length; i < len; ++i) {
23 var f = iframes[i];
24 f.style.height = (f.contentDocument.body.scrollHeight + 20) + 'px';
25 }
26}, 5000);
27</script>
28</html>
Note: See TracBrowser for help on using the repository browser.