<html>
    <head>
      <base href="https://bugs.webkit.org/" />
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - [ES6] Enable Symbol in web pages"
   href="https://bugs.webkit.org/show_bug.cgi?id=143375">143375</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>[ES6] Enable Symbol in web pages
          </td>
        </tr>

        <tr>
          <th>Classification</th>
          <td>Unclassified
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>WebKit
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>528+ (Nightly build)
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>Unspecified
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>Normal
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P2
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>JavaScriptCore
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>webkit-unassigned&#64;lists.webkit.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>utatane.tea&#64;gmail.com
          </td>
        </tr></table>
      <p>
        <div>
        <pre>Originally, it is hidden in web pages because it causes Facebook's comment input.
When landing Object.getOwnPropertySymbols, original issue is solved, so I think it's time to enable Symbols in web pages.

And I suggest exposing only effective well-known symbols.
Here's all well-known symbols.

Specification Name    [[Description]]    Value and Purpose
&#64;&#64;hasInstance    &quot;Symbol.hasInstance&quot;    A method that determines if a constructor object recognizes an object as one of the constructor’s instances. Called by the semantics of the instanceof operator.
&#64;&#64;isConcatSpreadable    &quot;Symbol.isConcatSpreadable&quot;    A Boolean valued property that if true indicates that an object should be flattened to its array elements by Array.prototype.concat.
&#64;&#64;iterator    &quot;Symbol.iterator&quot;    A method that returns the default Iterator for an object. Called by the semantics of the for-of statement.
&#64;&#64;match    &quot;Symbol.match&quot;    A regular expression method that matches the regular expression against a string. Called by the String.prototype.match method.
&#64;&#64;replace    &quot;Symbol.replace&quot;    A regular expression method that replaces matched substrings of a string. Called by the String.prototype.replace method.
&#64;&#64;search    &quot;Symbol.search&quot;    A regular expression method that returns the index within a string that matches the regular expression. Called by the String.prototype.search method.
&#64;&#64;species    &quot;Symbol.species&quot;    A function valued property that is the constructor function that is used to create derived objects.
&#64;&#64;split    &quot;Symbol.split&quot;    A regular expression method that splits a string at the indices that match the regular expression. Called by the String.prototype.split method.
&#64;&#64;toPrimitive    &quot;Symbol.toPrimitive&quot;    A method that converts an object to a corresponding primitive value. Called by the ToPrimitive abstract operation.
&#64;&#64;toStringTag    &quot;Symbol.toStringTag&quot;    A String valued property that is used in the creation of the default string description of an object. Accessed by the built-in method Object.prototype.toString.
&#64;&#64;unscopables    &quot;Symbol.unscopables&quot;    An object valued property whose own property names are property names that are excluded from the with environment bindings of the associated object.

In them, JSC supports the following 2 symbols. So at this time, exposing them.

&#64;&#64;iterator
&#64;&#64;unscopables</pre>
        </div>
      </p>
      <hr>
      <span>You are receiving this mail because:</span>
      
      <ul>
          <li>You are the assignee for the bug.</li>
      </ul>
    </body>
</html>