How to select by CSS styles in jQuery? part 1

How to select by CSS styles in jQuery? part 1

HTML

<div class="Test" style="color: Red; display: block;">
        aaa <a href="#test">test</a><br />
    </div>
    <div class="Test" style="color: Aqua;">
        bbb <a href="#test">test</a><br />
    </div>
    <div class="Test" style="font-size: 15px; display: none;">
        ccc <a href="#test">test</a><br />
    </div>

JavaScript

$(document).ready(function () {
            $('a').parents('div[style*="display: none"]').show();
        });