.test {
position: relative;
width: 300px;
height: 100px;
box-sizing: border-box;
border: 1px solid #000;
}
.test:before {
position: absolute;
display: block;
content: '';
top: -10px;
left: -10px;
right: -10px;
bottom: -10px;
border: 1px dotted #900;
}
// пропустили [0] в конце, так как getElements возвращает коллекцию
var body = document.getElementsByTagName("body")[0];
<p>Некий текст <span class='num'>1234567890</span> и еще некий текст</p>