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: native_client_sdk/src/gonacl_appengine/static/frame.js

Issue 111833002: Add missing argument to Element.setAttribute() calls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 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 | « native_client_sdk/src/examples/demo/nacl_io/example.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/gonacl_appengine/static/frame.js
diff --git a/native_client_sdk/src/gonacl_appengine/static/frame.js b/native_client_sdk/src/gonacl_appengine/static/frame.js
index 580d994ae5966f42010ecb086d739288dde283c1..eca667e116c2f6630e97d1455b9ba37992e3e191 100644
--- a/native_client_sdk/src/gonacl_appengine/static/frame.js
+++ b/native_client_sdk/src/gonacl_appengine/static/frame.js
@@ -138,7 +138,7 @@ function createIframe(src) {
iframeEl.setAttribute('width', '100%');
iframeEl.setAttribute('height', '100%');
iframeEl.src = src;
- iframeEl.setAttribute('hidden');
+ iframeEl.setAttribute('hidden', '');
iframeEl.onload = function() {
if (oldIframeEl)
oldIframeEl.parentNode.removeChild(oldIframeEl);
« no previous file with comments | « native_client_sdk/src/examples/demo/nacl_io/example.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698