What is the relevance of clsid: D27CDB6E-AE6D-11cf-96B8-444553540000

From jQuery 1.7rc1 source:

noData: { "embed": true, // Ban all objects except for Flash (which handle expandos) "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", "applet": true }, 

What is clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 ?

+4
source share
2 answers

Whenever an object is not a Shockwave flash object, setting the expando properties will not work (the "expando property" ), as unmanaged errors will occur. At a glance at the source, this method is interna

From source:

 // The following elements throw uncatchable exceptions if you // attempt to add expando properties to them. noData: { "embed": true, // Ban all objects except for Flash (which handle expandos) "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", "applet": true }, 

Search the source for noData , and many links appear with related comments.

+2
source

According to the code, the point <

Deny all objects except Flash (which handle expandos)

This means that the string "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" used for draft Flash objects. Google's first result indicates that the GUID stores "configuration data for the Shockwave Flash policy."

0
source

All Articles