2010-11-08 07:23:26 +00:00
<!DOCTYPE html>
< html >
< head >
2013-10-29 03:32:01 +00:00
< meta charset = "utf-8" / >
2010-11-08 07:23:26 +00:00
< title > All SVG-edit Tests< / title >
< / head >
< body >
< h1 > All SVG-edit Tests< / h1 >
2010-11-08 19:06:56 +00:00
< 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 >
2013-02-20 15:34:42 +00:00
< iframe src = 'jquery-svg_test.html' width = '100%' height = '70' scrolling = 'no' > < / iframe >
2012-03-30 16:27:32 +00:00
< 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 = 'draw_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 >
2013-02-13 15:04:58 +00:00
< iframe src = 'sanitize_test.html' width = '100%' height = '70' scrolling = 'no' > < / iframe >
2013-02-14 15:19:46 +00:00
< iframe src = 'coords_test.html' width = '100%' height = '70' scrolling = 'no' > < / iframe >
2013-02-20 06:42:00 +00:00
< iframe src = 'recalculate_test.html' width = '100%' height = '70' scrolling = 'no' > < / iframe >
2010-11-08 07:23:26 +00:00
< / body >
< script >
window.setTimeout(function() {
var iframes = document.getElementsByTagName('iframe');
for (var i = 0, len = iframes.length; i < len ; + + i ) {
var f = iframes[i];
2010-11-09 05:29:41 +00:00
f.style.height = (f.contentDocument.body.scrollHeight + 20) + 'px';
2010-11-08 07:23:26 +00:00
}
2011-02-02 17:28:43 +00:00
}, 5000);
2010-11-08 07:23:26 +00:00
< / script >
< / html >