1// Copy paste this into your browser console
2var docWidth = document.documentElement.offsetWidth;
3
4[].forEach.call(
5 document.querySelectorAll('*'),
6 function(el) {
7 if (el.offsetWidth > docWidth) {
8 console.log(el);
9 }
10 }
11);