summaryrefslogtreecommitdiffstats
path: root/ppapi/example/example.html
diff options
context:
space:
mode:
Diffstat (limited to 'ppapi/example/example.html')
-rw-r--r--ppapi/example/example.html2
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() {