diff options
author | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-25 05:55:36 +0000 |
---|---|---|
committer | toyoshim@chromium.org <toyoshim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-25 05:55:36 +0000 |
commit | ef82d002a310b5c4d3987a1eab645ef8c211a243 (patch) | |
tree | a9df2ac6b869bd4515f22ef881f861e4bea3d818 | |
parent | 365c422975afad6b0c15442fc3b5665701a575db (diff) | |
download | chromium_src-ef82d002a310b5c4d3987a1eab645ef8c211a243.zip chromium_src-ef82d002a310b5c4d3987a1eab645ef8c211a243.tar.gz chromium_src-ef82d002a310b5c4d3987a1eab645ef8c211a243.tar.bz2 |
Fix a trivial typo (width and height are swapped)
BUG=NONE
TEST=manual test; chrome --register-pepper-plugins="$SRC/out/Debug/lib.target/libppapi_example.so;application/x-ppapi-example" file:///$SRC/ppapi/example/example.html
Review URL: http://codereview.chromium.org/8369028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@107071 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | ppapi/example/example.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ppapi/example/example.html b/ppapi/example/example.html index 7146b3f..dd8ee8c 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() { |