It defines an HTTP-header which whitelists trusted sources for Javascript files while disallowing execution of inline Javascript in the HTML document.
Content Security Policy is currently in draft status at the W3C. The final HTTP header will be Content-Security-Policy.
An example header (Taken from the Mozilla CSP documentation), which restricts Javascript to the current domain, allows images from anywhere and restricts media files to the domain media1.com and any subdomain of media2.com:
X-Content-Security-Policy: default-src 'self'; img-src *; media-src media1.com *.media2.com
CSP is implemented in Firefox 4+ (X-Content-Security-Policy), Google Chrome 16+ (X-WebKit-CSP) and Internet Explorer 10+ (X-Content-Security-Policy).