Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: LayoutTests/platform/chromium/plugins/resources/script-container.html

Issue 14120003: Move LayoutTests from platform/chromium/... to generic location (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: LayoutTests/platform/chromium/plugins/resources/script-container.html
diff --git a/LayoutTests/platform/chromium/plugins/resources/script-container.html b/LayoutTests/platform/chromium/plugins/resources/script-container.html
deleted file mode 100644
index 921c5336f5b193166e96b85cd7b3252e0d413853..0000000000000000000000000000000000000000
--- a/LayoutTests/platform/chromium/plugins/resources/script-container.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<html>
-<head>
- <script type="text/javascript">
- window['new-script-object-in-frame'] = function() {
- return FactoryFunction();
- };
- // A simple script object with a member function that takes
- // an NPObject as an argument
- FactoryFunction = function() {
- var TestObject = function() {
- };
- TestObject.prototype.createObject = function(plugin) {
- var newObject = plugin.testCloneObject();
- return newObject;
- };
- var instance = new TestObject();
- return instance;
- };
- </script>
-</head>
-<body>
-</body>
-</html>

Powered by Google App Engine
This is Rietveld 408576698