Como consultarSelector elementos do DOM de um elemento usando o Polymer

Eu tenho o meu elemento:

<dom-module id="x-el">
  <p class="special-paragraph">first paragraph</p>
  <content></content>
</dom-module>

e eu uso assim

<x-el>
  <p class="special-paragraph">second paragraph</p>
</x-el>

na minha parte imperativa:

Polymer({
  is: 'x-el',

  ready: function () {
    /* this will select all .special-paragraph in the light DOM
       e.g. 'second paragraph' */
    Polymer.dom(this).querySelectorAll('.special-paragraph');

    /* this will select all .special-paragraph in the local DOM
       e.g. 'first paragraph' */
    Polymer.dom(this.root).querySelectorAll('.special-paragraph');

    /* how can I select all .special-paragraph in both light DOM and
       local DOM ? */
  }
});
,

É possível fazer isso usando os polímeros embutidos? Ou devo usar a API DOM padrão?

questionAnswers(1)

yourAnswerToTheQuestion