| Server IP : 202.61.199.114 / Your IP : 216.73.217.139 Web Server : nginx/1.22.1 System : Linux de.arni-solutions.de 6.1.0-49-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64 User : web20 ( 1018) PHP Version : 8.4.23 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /tmp/smi-shot/ |
Upload File : |
const puppeteer=require('puppeteer');
(async()=>{
const b=await puppeteer.launch({headless:'new',args:['--no-sandbox','--disable-setuid-sandbox','--host-resolver-rules=MAP www.safemyident.de 127.0.0.1','--ignore-certificate-errors']});
const p=await b.newPage();
await p.setViewport({width:1900,height:1000,deviceScaleFactor:1});
await p.goto('https://www.safemyident.de/tools/ip-check/',{waitUntil:'networkidle2',timeout:60000});
const m=await p.evaluate(()=>{
const form=document.querySelector('.smi-ipc__form');
const fr=form.getBoundingClientRect();
const cs=getComputedStyle(form);
const padL=parseFloat(cs.paddingLeft), padR=parseFloat(cs.paddingRight);
const innerL=fr.left+padL, innerR=fr.right-padR;
function ins(sel){const e=document.querySelector(sel);if(!e)return null;const r=e.getBoundingClientRect();return {sel,left:+(r.left-innerL).toFixed(1),right:+(innerR-r.right).toFixed(1)};}
const out=['.smi-ipc__hint','.smi-ipc__modes','.smi-ipc__myip','.smi-ipc__btn--big','.smi-ipc__mode-hint','.smi-ipc__fpopt','.smi-ipc__fpopt-text','.smi-ipc__fpopt-help'].map(ins).filter(Boolean);
return {formPadL:padL,formPadR:padR,formLeft:Math.round(fr.left),formRightGap:Math.round(window.innerWidth-fr.right),docWidth:document.documentElement.scrollWidth,winWidth:window.innerWidth,items:out};
})
console.log('form padL/padR:',m.formPadL,m.formPadR,'| form left:',m.formLeft,'right-gap:',m.formRightGap);
console.log('doc scrollWidth:',m.docWidth,'vs win:',m.winWidth, m.docWidth>m.winWidth?'*** HORIZONTAL OVERFLOW ***':'(no overflow)');
console.log('inner element insets (left / right from form content box):');
m.items.forEach(x=>console.log(' '+x.sel.padEnd(24)+' L='+String(x.left).padStart(7)+' R='+String(x.right).padStart(7)+(Math.abs(x.left-x.right)>2?' <-- ungleich':'')));
await b.close();
})().catch(e=>{console.error('ERR',e.message);process.exit(1);});