Bug 599873 - Cannot do a two-finger page down gesture on about:license [r=mfinkle]

This commit is contained in:
Wesley Johnston 2010-09-30 17:34:17 -04:00
Родитель 35b0a34f67
Коммит 008dd0fa70
2 изменённых файлов: 9 добавлений и 4 удалений

Просмотреть файл

@ -513,6 +513,9 @@
<parameter name="y"/>
<body>
<![CDATA[
let position = this.getPosition();
x = Math.floor(Math.max(0, Math.min(this.contentDocumentWidth, position.x+x))-position.x);
y = Math.floor(Math.max(0, Math.min(this.contentDocumentHeight, position.y+y))-position.y);
this.contentWindow.scrollBy(x, y);
]]>
</body>
@ -524,6 +527,8 @@
<parameter name="y"/>
<body>
<![CDATA[
x = Math.floor(Math.max(0, Math.min(this.contentDocumentWidth, x)));
y = Math.floor(Math.max(0, Math.min(this.contentDocumentHeight, y)));
this.contentWindow.scrollTo(x, y);
]]>
</body>

Просмотреть файл

@ -81,10 +81,10 @@ function onDebugKeyPress(ev) {
// use capitals so we require SHIFT here too
const a = 65;
const a = 65; // swipe left
const b = 66;
const c = 67;
const d = 68;
const d = 68; // swipe right
const e = 69;
const f = 70; // force GC
const g = 71;
@ -99,11 +99,11 @@ function onDebugKeyPress(ev) {
const p = 80; // fake pinch zoom
const q = 81; // toggle orientation
const r = 82;
const s = 83;
const s = 83; // swipe down
const t = 84;
const u = 85;
const v = 86;
const w = 87;
const w = 87; // swipe up
const x = 88;
const y = 89;
const z = 90;