xyc
2025-02-21 664db98c9e8595ce4dd636a27f480e3a08b81ff5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html>
<head>
  <title>All SVG-edit Tests</title>
</head>
<body>
  <h1>All SVG-edit Tests</h1>
  <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>
  <iframe src='svgtransformlist_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='contextmenu_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='math_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='svgutils_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='history_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='select_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='dr aw_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='units_test.html' width='100%' height='70' scrolling='no'></iframe>
  <iframe src='path_test.html' width='100%' height='70' scrolling='no'></iframe>
</body>
<script>
window.setTimeout(function() {
  var iframes = document.getElementsByTagName('iframe');
  for (var i = 0, len = iframes.length; i < len; ++i) {
    var f = iframes[i];
    f.style.height = (f.contentDocument.body.scrollHeight + 20) + 'px';
  }
}, 5000);
</script>
</html>