summaryrefslogtreecommitdiffstats
path: root/webkit
diff options
context:
space:
mode:
authordpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-19 02:32:28 +0000
committerdpranke@google.com <dpranke@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-19 02:32:28 +0000
commit8416a4fea274962d588e0863836b53923ee2d80e (patch)
tree09ead661dd85e2070ddede506f980c45bc1854ca /webkit
parentd58373604b39adedc4046a05f2ca90912bcaa74f (diff)
downloadchromium_src-8416a4fea274962d588e0863836b53923ee2d80e.zip
chromium_src-8416a4fea274962d588e0863836b53923ee2d80e.tar.gz
chromium_src-8416a4fea274962d588e0863836b53923ee2d80e.tar.bz2
Remove tests - they are dups of the upstream tests.
BUG=none TEST=chrome/fast/encoding/Invalid-multi-byte-over-consumption.html R=ojan@chromium.org git-svn-id: svn://svn.chromium.org/chrome/trunk/src@35034 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r--webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption-expected.txt6
-rw-r--r--webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption.html49
2 files changed, 0 insertions, 55 deletions
diff --git a/webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption-expected.txt b/webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption-expected.txt
deleted file mode 100644
index aa7e3aca..0000000
--- a/webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption-expected.txt
+++ /dev/null
@@ -1,6 +0,0 @@
-Test if an invalid multi-byte sequence is onverconsumed leading to an XSS vector
-
-ABCD" onchange="test='Failed'" using malformed byte sequence 0x83 0x22
-Passed
-
-
diff --git a/webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption.html b/webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption.html
deleted file mode 100644
index 72f1dee..0000000
--- a/webkit/data/layout_tests/chrome/fast/encoding/Invalid-multi-byte-over-consumption.html
+++ /dev/null
@@ -1,49 +0,0 @@
-<html>
-<head>
-<meta http-equiv="content-type" content="text/htm; charset=Shift-JIS">
-<script language="javascript">
- if (window.layoutTestController)
- {
- layoutTestController.dumpAsText();
- layoutTestController.waitUntilDone();
- }
-
- var test = "Passed";
-
- function runTest()
- {
- var t=document.getElementById("input1");
-
- if (document.all)
- {
- t.fireEvent("onchange");
- }
- else
- {
- var evt = document.createEvent("HTMLEvents");
- evt.initEvent("change",true,true);
- t.dispatchEvent(evt);
- }
-
- var r = document.getElementById("result");
-
- if (test=="Passed")
- {
- r.innerHTML = "Passed";
- }
- else
- {
- r.innerHTML = "Failed";
- }
- }
-
- if (window.layoutTestController)
- layoutTestController.notifyDone();
-</script>
-</head>
-<body onload="runTest();">
-<p>Test if an invalid multi-byte sequence is onverconsumed leading to an
-XSS vector</p>
-<input id="input1" src="" type="xssƒ">ABCD" onchange="test='Failed'" using malformed byte sequence 0x83 0x22<br>
-<div id="result"></div>
-</body> \ No newline at end of file