blob: 6508e3d3fe376e89e685362138e7898eef533b66 [file]
// Copyright 2020 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
function createTrackingPixel(url) {
let img = document.createElement('img');
img.src = url;
document.body.appendChild(img);
}