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

Unified Diff: ppapi/example/example.html

Issue 8369028: Fix a trivial typo (width and height are swapped) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/example/example.html
diff --git a/ppapi/example/example.html b/ppapi/example/example.html
index 7146b3f93dfbbe45761628b7d9b1a76a83390a0a..dd8ee8c4824247f492d87c88c2cd2bdb82ec91b2 100644
--- a/ppapi/example/example.html
+++ b/ppapi/example/example.html
@@ -16,7 +16,7 @@ function SetPluginSize(width, height) {
size = document.getElementById('size');
plugin.width = width;
plugin.height = height;
- size.innerHTML = "Height: " + plugin.width + ' Width: ' + plugin.height;
+ size.innerHTML = "Height: " + plugin.height + ' Width: ' + plugin.width;
}
function ToggleSize() {
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698