Skip to content

Commit

Permalink
Format code.
Browse files Browse the repository at this point in the history
  • Loading branch information
aljungberg committed Mar 18, 2012
1 parent 22058a7 commit 65aa08a
Showing 1 changed file with 26 additions and 26 deletions.
52 changes: 26 additions & 26 deletions AppKit/CPScrollView.j
Original file line number Diff line number Diff line change
Expand Up @@ -35,33 +35,33 @@
var _isSystemUsingOverlayScrollers = function()
{
#if PLATFORM(DOM)
var inner = document.createElement('p'),
outer = document.createElement('div');

inner.style.width = "100%";
inner.style.height = "200px";

outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
outer.style.visibility = "hidden";
outer.style.width = "200px";
outer.style.height = "150px";
outer.style.overflow = "hidden";
outer.appendChild (inner);

document.body.appendChild (outer);
var w1 = inner.offsetWidth;
outer.style.overflow = 'scroll';
var w2 = inner.offsetWidth;
if (w1 == w2)
w2 = outer.clientWidth;

document.body.removeChild (outer);

return (w1 - w2 == 0);
var inner = document.createElement('p'),
outer = document.createElement('div');

inner.style.width = "100%";
inner.style.height = "200px";

outer.style.position = "absolute";
outer.style.top = "0px";
outer.style.left = "0px";
outer.style.visibility = "hidden";
outer.style.width = "200px";
outer.style.height = "150px";
outer.style.overflow = "hidden";
outer.appendChild (inner);

document.body.appendChild (outer);
var w1 = inner.offsetWidth;
outer.style.overflow = 'scroll';
var w2 = inner.offsetWidth;
if (w1 == w2)
w2 = outer.clientWidth;

document.body.removeChild (outer);

return (w1 - w2 == 0);
#else
return NO;
return NO;
#endif
};

Expand Down

0 comments on commit 65aa08a

Please sign in to comment.