| 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() {
|
|
|