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

Unified Diff: LayoutTests/editing/execCommand/insertImage-src.html

Issue 788153003: Make execCommand("insertImage", false, "") not add a src attribute (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years 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
« no previous file with comments | « no previous file | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: LayoutTests/editing/execCommand/insertImage-src.html
diff --git a/LayoutTests/editing/execCommand/insertImage-src.html b/LayoutTests/editing/execCommand/insertImage-src.html
new file mode 100644
index 0000000000000000000000000000000000000000..7b6bb016bab0c46560096f7806dfdfce86fc6e55
--- /dev/null
+++ b/LayoutTests/editing/execCommand/insertImage-src.html
@@ -0,0 +1,29 @@
+<!DOCTYPE html>
+<html>
+<head>
+<title>execCommand("insertImage") src attribute</title>
+<script src="../../resources/testharness.js"></script>
+<script src="../../resources/testharnessreport.js"></script>
+</head>
+<body>
+<div id="log"></div>
+<script>
+function t(value, innerHTML) {
+ test(function() {
Yuta Kitamura 2014/12/11 02:35:50 We usually apply Blink's (C++) coding style in Jav
philipj_slow 2014/12/11 08:20:38 http://www.chromium.org/blink/coding-style/layout-
+ var e = document.createElement("div");
+ e.contentEditable = true;
+ document.body.appendChild(e);
+ e.focus();
+ document.execCommand("insertImage", false, value);
+ assert_equals(e.innerHTML, innerHTML);
+ document.body.removeChild(e);
+ }, 'document.execCommand("insertImage", false, ' + value + ')');
+}
+t(undefined, "<img>");
+t(null, "<img>");
+t("", "<img>");
+t(" ", '<img src=" ">');
+t("image", '<img src="image">');
+</script>
+</body>
+</html>
« no previous file with comments | « no previous file | Source/core/editing/EditorCommand.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698