/* Lightning Locker enhances security by restricting components' access to APIs and Lightning Component framework internals. This example shows how it blocks the setting of rel="import" on link elements, since the setting can bypass sandboxes. When you click Evaluate, a table on the right side shows the value of your output, based on whether Locker is turned on or off. */ var link = document.createElement('link'); link.rel = 'import'; var rel = link.rel; rel;